cached_schema_after_alter.sim 2.1 KB
Newer Older
S
slguan 已提交
1
system sh/stop_dnodes.sh
S
slguan 已提交
2 3

system sh/deploy.sh -n dnode1 -i 1
S
Shengliang Guan 已提交
4
system sh/cfg.sh -n dnode1 -c wallevel -v 2
S
slguan 已提交
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
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
S
scripts  
Shengliang Guan 已提交
56
sleep 5000
S
slguan 已提交
57 58
system sh/exec.sh -n dnode1 -s start
print ================== server restart completed
S
Shengliang Guan 已提交
59
sleep 5000
S
slguan 已提交
60 61 62 63
sql connect

sql use $db
sql select * from $stb
S
Shengliang Guan 已提交
64
print select * from $stb ==> $data00 $data01 $data02
S
slguan 已提交
65 66 67 68 69 70
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
S
scripts  
Shengliang Guan 已提交
71
if $data02 != NULL then
S
slguan 已提交
72 73 74 75
  return -1
endi 

sql select * from $tb2
S
Shengliang Guan 已提交
76
print select * from $tb2 ==> $data00 $data01 $data02
S
slguan 已提交
77 78 79 80 81 82
if $rows != 1 then
  return -1
endi
if $data01 != 1 then
  return -1
endi 
S
scripts  
Shengliang Guan 已提交
83
if $data02 != NULL then
S
slguan 已提交
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 120 121
  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 
guanshengliang's avatar
scripts  
guanshengliang 已提交
122 123

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