like.sim 2.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/cfg.sh -n dnode1 -c walLevel -v 1
system sh/cfg.sh -n dnode1 -c maxtablesPerVnode -v 4
system sh/exec.sh -n dnode1 -s start

sleep 10
sql connect
print ======================== dnode1 start


$db = testdb
sql drop database if exists $db
sql create database $db cachelast 2
sql use $db

$table1 = table_name
$table2 = tablexname

sql create table $table1 (ts timestamp, b binary(20))
sql create table $table2 (ts timestamp, b binary(20))

sql insert into $table1 values(now,    "table_name")
sql insert into $table1 values(now-1m, "tablexname")
sql insert into $table1 values(now-2m, "tablexxx")
26
sql insert into $table1 values(now-3m, "table")
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58

sql select b from $table1 
if $rows != 4 then
  return -1
endi

sql select b from $table1 where b like 'table_name' 
if $rows != 2 then
  return -1
endi


sql select b from $table1 where b like 'table\_name'
if $rows != 1 then
  return -1
endi

sql show tables;
if $rows != 2 then 
  return -1
endi

sql show tables like 'table_name'
if $rows != 2 then 
  return -1
endi

sql show tables like 'table\_name'
if $rows != 1 then 
  return -1
endi

59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
sql create database escape_percentage;
sql use  escape_percentage;
$table1 = tablename
$table2 = `table%`

sql create table $table1 (ts timestamp, b binary(20))
sql create table $table2 (ts timestamp, b binary(20))

sql insert into $table1 values(now,    "table%name")
sql insert into $table1 values(now-1m, "table%")
sql insert into $table1 values(now-2m, "table%%%")
sql insert into $table1 values(now-3m, "table")

sql select b from $table1 where b like 'table\%'
print $rows
if $rows != 1 then 
  return -1
endi
sql select b from $table1 where b like 'table\%\%\%'
print $rows
if $rows != 1 then 
  return -1
endi
sql select b from $table1 where b like 'table%'
print $rows
if $rows != 4 then 
  return -1
endi
sql show tables like 'table\%'
print $rows
if $rows != 1 then 
  return -1
endi
sql show tables like 'table%'
print $rows
if $rows != 2 then 
  return -1
endi
sql drop database escape_percentage
98 99 100
system sh/exec.sh -n dnode1 -s stop -x SIGINT