like.sim 1.2 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 26 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 59 60 61
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")
sql insert into $table1 values(now-2m, "table")

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

system sh/exec.sh -n dnode1 -s stop -x SIGINT