From f6fef3e9d66b3733e8cff2b15cb43c9a8c090097 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Thu, 25 May 2023 14:54:21 +0800 Subject: [PATCH] feat:add privilege for schemaless --- utils/test/c/sml_test.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/test/c/sml_test.c b/utils/test/c/sml_test.c index 3ccff755f5..94619339e9 100644 --- a/utils/test/c/sml_test.c +++ b/utils/test/c/sml_test.c @@ -1243,11 +1243,11 @@ int sml_td24070_Test() { ASSERT(taos_errno(pRes) == 0); taos_free_result(pRes); - pRes = taos_query(taos, "grant read on td24070_write.t_035c845c1a3df238c54d9b8f1a8844bd to test_tb_read"); + pRes = taos_query(taos, "grant read on td24070_write.stb2 with t1=1 to test_tb_read"); ASSERT(taos_errno(pRes) == 0); taos_free_result(pRes); - pRes = taos_query(taos, "grant write on td24070_write.t_035c845c1a3df238c54d9b8f1a8844bd to test_tb_write"); + pRes = taos_query(taos, "grant write on td24070_write.stb2 with t1=1 to test_tb_write"); ASSERT(taos_errno(pRes) == 0); taos_free_result(pRes); taos_close(taos);