fix: plan problem of create stream statement
This commit is contained in:
parent
0f3a7e314e
commit
9bfc7ba69c
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue