fix: plan problem of create stream statement

This commit is contained in:
Xiaoyu Wang 2022-08-05 19:40:06 +08:00
parent 0f3a7e314e
commit 9bfc7ba69c
3 changed files with 3 additions and 3 deletions

View File

@ -2404,7 +2404,7 @@ static const SOptimizeRule optimizeRuleSet[] = {
static const int32_t optimizeRuleNum = (sizeof(optimizeRuleSet) / sizeof(SOptimizeRule));
static void dumpLogicSubplan(const char* pRuleName, SLogicSubplan* pSubplan) {
if (0 == qDebugFlag & DEBUG_DEBUG) {
if (0 == (qDebugFlag & DEBUG_DEBUG)) {
return;
}
char* pStr = NULL;

View File

@ -1423,7 +1423,7 @@ static const SSplitRule splitRuleSet[] = {
static const int32_t splitRuleNum = (sizeof(splitRuleSet) / sizeof(SSplitRule));
static void dumpLogicSubplan(const char* pRuleName, SLogicSubplan* pSubplan) {
if (0 == qDebugFlag & DEBUG_DEBUG) {
if (0 == (qDebugFlag & DEBUG_DEBUG)) {
return;
}
char* pStr = NULL;

View File

@ -19,7 +19,7 @@
#include "scalar.h"
static void dumpQueryPlan(SQueryPlan* pPlan) {
if (0 == qDebugFlag & DEBUG_DEBUG) {
if (0 == (qDebugFlag & DEBUG_DEBUG)) {
return;
}
char* pStr = NULL;