cached_schema_after_alter.sim 2.0 KB
Newer Older
S
slguan 已提交
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 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 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119
system sh/stop_dnodes.sh
system sh/ip.sh -i 1 -s up
system sh/deploy.sh -n dnode1 -m 192.168.0.1 -i 192.168.0.1
system sh/cfg.sh -n dnode1 -c clog -v 0
system sh/exec.sh -n dnode1 -s start
sleep 3000
sql connect

$db = csaa_db
$stb = csaastb
$tb1 = csaatb1
$tb2 = csaatb2

$ts0 = 1537146000000
$delta = 600000
print ========== cached_schema_after_alter.sim

sql drop database $db -x step1
step1:
sql create database $db 
print ====== create tables
sql use $db

sql create table $stb (ts timestamp, c1 int) tags(t1 int)
sql create table $tb1 using $stb tags( 1 )
sql create table $tb2 using $stb tags( 2 )

sql_error alter table $tb1 add column c0 int
sql alter table $stb add column c2 int

sql insert into $tb2 values ( $ts0 , 1, 1)
sql select * from $stb
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
if $data02 != 1 then
  return -1
endi 

sql select * from $tb2
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
if $data02 != 1 then
  return -1
endi 

print ================== restart server to commit data into disk
system sh/exec.sh -n dnode1 -s stop -x SIGINT
sleep 2000
system sh/exec.sh -n dnode1 -s start
print ================== server restart completed
sql connect
sleep 3000

sql use $db
sql select * from $stb
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
if $data02 != 1 then
  return -1
endi 

sql select * from $tb2
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
if $data02 != 1 then
  return -1
endi 

$ts = $ts0 + $delta
sql insert into $tb2 values ( $ts , 2, 2)
sql select * from $stb order by ts asc
if $rows != 2 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
if $data02 != 1 then
  return -1
endi 
if $data11 != 2 then
  return -1
endi 
if $data12 != 2 then
  return -1
endi 

sql select * from $tb2 order by ts asc
if $rows != 2 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
if $data02 != 1 then
  return -1
endi 
if $data11 != 2 then
  return -1
endi 
if $data12 != 2 then
  return -1
endi