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/cfg.sh -n dnode1 -c debugflag -v 131
S
Shengliang Guan 已提交
4
system sh/exec.sh -n dnode1 -s start -v
S
Shengliang Guan 已提交
5 6
sql connect

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

S
Shengliang Guan 已提交
22 23 24 25 26 27 28
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 已提交
29
sql_error alter user u2 sysinfo 0
S
Shengliang Guan 已提交
30

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

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

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 已提交
59

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