basic1.sim 1.4 KB
Newer Older
S
Shengliang Guan 已提交
1 2
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
S
Shengliang Guan 已提交
3
system sh/exec.sh -n dnode1 -s start -v
S
Shengliang Guan 已提交
4 5
sql connect

S
Shengliang Guan 已提交
6 7 8 9 10 11
print =============== step1: create drop show dnodes
$x = 0
step1:
	$x = $x + 1
	sleep 1000
	if $x == 10 then
S
Shengliang Guan 已提交
12
	  print ----> dnode not ready!
S
Shengliang Guan 已提交
13 14 15
		return -1
	endi
sql show dnodes
S
Shengliang Guan 已提交
16
print ----> $data00 $data01 $data02 $data03 $data04 $data05
S
Shengliang Guan 已提交
17 18 19
if $rows != 1 then
  return -1
endi
S
Shengliang Guan 已提交
20

S
Shengliang Guan 已提交
21 22 23 24 25 26 27
print =============== step2: create alter drop show user
sql create user u1 pass 'taosdata'
sql show users
sql alter user u1 sysinfo 1
sql alter user u1 enable 1
sql alter user u1 pass 'taosdata'
sql drop user u1
S
Shengliang Guan 已提交
28
sql_error alter user u2 sysinfo 0
S
Shengliang Guan 已提交
29

S
Shengliang Guan 已提交
30 31 32 33 34
print =============== step3: create drop dnode
sql create dnode $hostname port 7200
sql drop dnode 2
sql alter dnode 1 'debugflag 143'

S
Shengliang Guan 已提交
35 36
print =============== step4: create show database
sql create database d1 vgroups 1
S
Shengliang Guan 已提交
37
sql show databases
S
Shengliang Guan 已提交
38 39
sql use d1
sql show vgroups
S
Shengliang Guan 已提交
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

print =============== step5: create show stable
sql create table if not exists stb (ts timestamp, c1 int, c2 float, c3 double) tags (t1 int unsigned)
sql show stables
if $rows != 1 then 
  return -1
endi

print =============== step6: create show table
sql create table ct1 using stb tags(1000)
sql show tables
if $rows != 1 then 
  return -1
endi

print =============== step7: insert data

print =============== step7: select data
S
Shengliang Guan 已提交
58

S
Shengliang Guan 已提交
59
_OVER:
S
Shengliang Guan 已提交
60
system sh/exec.sh -n dnode1 -s stop -x SIGINT