fix: case issue

This commit is contained in:
dapan1121 2023-11-10 11:47:02 +08:00
parent dd0ac98a5f
commit 4cba023447
2 changed files with 2 additions and 2 deletions

View File

@ -365,7 +365,7 @@ typedef struct SSortExecInfo {
} SSortExecInfo;
typedef struct SNonSortExecInfo {
int32_t blkNums;
} SNonSortExecInfo;

View File

@ -210,7 +210,7 @@ class TDTestCase:
#self.check_explain_res_has_row('SortMerge', explain_res)
#self.check_explain_res_has_row("blocking=0", explain_res)
explain_res = self.explain_sql(sql_hint)
self.check_explain_res_has_row('SortMerge', explain_res)
self.check_explain_res_has_row('Merge', explain_res)
self.check_explain_res_has_row('blocking=0', explain_res)
def test_pipelined_agg_plan_with_slimit(self):