From b8efdd3e28affae3f9be2675403a5aa2454064e5 Mon Sep 17 00:00:00 2001 From: Xiaoyu Wang Date: Tue, 2 Aug 2022 20:21:14 +0800 Subject: [PATCH] fix: some problems of parser --- source/libs/planner/test/planSubqueryTest.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/source/libs/planner/test/planSubqueryTest.cpp b/source/libs/planner/test/planSubqueryTest.cpp index 7fcbfab5e6..522f1bf746 100644 --- a/source/libs/planner/test/planSubqueryTest.cpp +++ b/source/libs/planner/test/planSubqueryTest.cpp @@ -85,9 +85,3 @@ TEST_F(PlanSubqeuryTest, outerPartition) { run("SELECT c1, COUNT(*) FROM (SELECT ts, c1 FROM st1) PARTITION BY c1"); } - -TEST_F(PlanSubqeuryTest, outerApercentile) { - useDb("root", "test"); - - run("SELECT APERCENTILE(c1, 54) FROM (SELECT SUM(c1) AS c1 FROM t1)"); -}