mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
* restore .gitmodules
* Revert "[TD-13408]<test>: move tests directory out"
This reverts commit 7db7bd9337.
* revert to make tests back
* immigrate file change in stand-alone repo to TDengine
* remove tests repository checkout
Co-authored-by: tangfangzhi <fztang@taosdata.com>
32 lines
No EOL
604 B
Text
32 lines
No EOL
604 B
Text
system sh/stop_dnodes.sh
|
|
system sh/mv_old_data.sh
|
|
|
|
print ============== deploy
|
|
|
|
system sh/exec.sh -n dnode1 -s start
|
|
system sh/exec.sh -n dnode2 -s start
|
|
system sh/exec.sh -n dnode3 -s start
|
|
|
|
print =============== step1
|
|
|
|
sql use test
|
|
sql select * from m1
|
|
|
|
print $rows points data are retrieved
|
|
if $rows != 7 then
|
|
return -1
|
|
endi
|
|
|
|
print =============== step 2
|
|
|
|
sql select * from t1
|
|
|
|
print $rows points data are retrieved
|
|
if $rows != 7 then
|
|
return -1
|
|
endi
|
|
|
|
|
|
system sh/exec.sh -n dnode1 -s stop -x SIGINT
|
|
system sh/exec.sh -n dnode2 -s stop -x SIGINT
|
|
system sh/exec.sh -n dnode3 -s stop -x SIGINT |