From 6804c6a47f24992af366e086f960018c34ced010 Mon Sep 17 00:00:00 2001 From: Xiaoyu Wang Date: Mon, 9 May 2022 20:30:26 +0800 Subject: [PATCH] fix: problem of parser and planner --- source/libs/parser/test/parSelectTest.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/source/libs/parser/test/parSelectTest.cpp b/source/libs/parser/test/parSelectTest.cpp index d54de3df62..5a385ba25e 100644 --- a/source/libs/parser/test/parSelectTest.cpp +++ b/source/libs/parser/test/parSelectTest.cpp @@ -37,15 +37,13 @@ TEST_F(ParserSelectTest, basic) { TEST_F(ParserSelectTest, constant) { useDb("root", "test"); -#if 0 + run("SELECT 123, 20.4, 'abc', \"wxy\", timestamp '2022-02-09 17:30:20', true, false, 10s FROM t1"); run("SELECT 1234567890123456789012345678901234567890, 20.1234567890123456789012345678901234567890, 'abc', \"wxy\", " "timestamp '2022-02-09 17:30:20', true, false, 15s FROM t1"); run("SELECT 123 + 45 FROM t1 WHERE 2 - 1"); -#endif - run("SELECT 1.1.1 FROM t1"); } TEST_F(ParserSelectTest, expression) { -- GitLab