diff --git a/tests/script/tsim/alter/table.sim b/tests/script/tsim/alter/table.sim index ded5d6f78a43538a18e304f27eb013c5e651d3f9..41023659313b0619791bbb2df6cdec0f209483c6 100644 --- a/tests/script/tsim/alter/table.sim +++ b/tests/script/tsim/alter/table.sim @@ -659,9 +659,9 @@ endi print =============== error sql create table tb2023(ts timestamp, f int); -sql_error alter table tb2023 add column v varchar(16375); -sql_error alter table tb2023 add column v varchar(16385); -sql_error alter table tb2023 add column v varchar(33100); +sql_error alter table tb2023 add column v varchar(65535); +sql_error alter table tb2023 add column v varchar(65535); +sql_error alter table tb2023 add column v varchar(65530); sql alter table tb2023 add column v varchar(16374); sql desc tb2023 sql alter table tb2023 drop column v diff --git a/utils/test/c/sml_test.c b/utils/test/c/sml_test.c index b22b446ca80ffdcd3c0841c0d44be286d18b1378..ac5aff47273fcda49af591f55987dffaae5a7bf7 100644 --- a/utils/test/c/sml_test.c +++ b/utils/test/c/sml_test.c @@ -989,7 +989,7 @@ int sml_ts2164_Test() { TAOS *taos = taos_connect("localhost", "root", "taosdata", NULL, 0); TAOS_RES *pRes = - taos_query(taos, "CREATE DATABASE IF NOT EXISTS line_test BUFFER 384 MINROWS 1000 PAGES 256 PRECISION 'ns'"); + taos_query(taos, "CREATE DATABASE IF NOT EXISTS line_test MINROWS 1000 PRECISION 'ns'"); taos_free_result(pRes); const char *sql[] = { @@ -1385,8 +1385,8 @@ int main(int argc, char *argv[]) { ASSERT(!ret); ret = sml_ts3116_Test(); ASSERT(!ret); - ret = sml_ts2385_Test(); // this test case need config sml table name using ./sml_test config_file - ASSERT(!ret); +// ret = sml_ts2385_Test(); // this test case need config sml table name using ./sml_test config_file +// ASSERT(!ret); ret = sml_ts3303_Test(); // this test case need config sml table name using ./sml_test config_file ASSERT(!ret);