From 356f071d123d24f042823c6cc43bdae971ab9a68 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Mon, 15 Jun 2020 17:20:28 +0800 Subject: [PATCH] fix null/NULL issue in alter.sim [TD-478] --- tests/script/general/parser/alter.sim | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/script/general/parser/alter.sim b/tests/script/general/parser/alter.sim index e57b1f43d2..44c12fa968 100644 --- a/tests/script/general/parser/alter.sim +++ b/tests/script/general/parser/alter.sim @@ -38,7 +38,7 @@ endi if $data02 != 1 then return -1 endi -if $data03 != NULL then +if $data03 != null then return -1 endi sql alter table tb add column c3 nchar(4) @@ -72,7 +72,7 @@ endi if $data02 != 1 then return -1 endi -if $data03 != NULL then +if $data03 != null then return -1 endi @@ -169,7 +169,7 @@ endi if $data01 != 2 then return -1 endi -if $data02 != NULL then +if $data02 != null then return -1 endi sql alter table mt add column c2 int @@ -239,4 +239,4 @@ if $rows != 0 then return -1 endi -system sh/exec.sh -n dnode1 -s stop -x SIGINT \ No newline at end of file +system sh/exec.sh -n dnode1 -s stop -x SIGINT -- GitLab