import_file.sim 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9
system sh/stop_dnodes.sh
system sh/deploy.sh -n dnode1 -i 1
system sh/exec.sh -n dnode1 -s start
sql connect

sql drop database if exists indb
sql create database if not exists indb
sql use indb

10 11 12 13 14
$inFileName = '/tmp/data.sql'
system_content printf %OS%
if $system_content == Windows_NT then
  $inFileName = 'C:\\Windows\\Temp\\data.sql'
endi
S
Shengliang Guan 已提交
15
system tsim/parser/gendata.sh
16 17 18 19

sql create table stbx (ts TIMESTAMP, collect_area NCHAR(12), device_id BINARY(16), imsi BINARY(16),  imei BINARY(16),  mdn BINARY(10), net_type BINARY(4), mno NCHAR(4), province NCHAR(10), city NCHAR(16), alarm BINARY(2)) tags(a int, b binary(12));

sql create table tbx (ts TIMESTAMP, collect_area NCHAR(12), device_id BINARY(16), imsi BINARY(16),  imei BINARY(16),  mdn BINARY(10), net_type BINARY(4), mno NCHAR(4), province NCHAR(10), city NCHAR(16), alarm BINARY(2))
S
Shengliang Guan 已提交
20
print ====== create tables success, starting insert data
21

22 23
sql insert into tbx file $inFileName
sql import into tbx file $inFileName
24 25 26 27 28 29 30 31 32 33 34 35 36

sql select count(*) from tbx
if $rows != 1 then
  print expect 1, actual: $rows
  return -1
endi

if $data00 != 3 then
  return -1
endi

sql drop table tbx;

37 38
sql insert into tbx using stbx tags(1,'abc') file $inFileName ;
sql insert into tbx using stbx tags(1,'abc') file $inFileName ;
39 40 41 42 43 44 45 46 47 48 49

sql select count(*) from tbx
if $rows != 1 then
  return -1
endi

if $data00 != 3 then
  return -1
endi

sql drop table tbx;
50
sql insert into tbx using stbx(b) tags('abcf') file $inFileName ;
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69

sql select ts,a,b from tbx;
if $rows != 3 then
  return -1
endi

if $data00 != @20-01-01 01:01:01.000@ then
  print expect 20-01-01 01:01:01.000 , actual: $data00
  return -1
endi

if $data01 != NULL then
  return -1
endi

if $data02 != @abcf@ then
  return -1
endi

70
system rm -f $inFileName
71

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