diff --git a/src/common/backend/utils/init/globals.cpp b/src/common/backend/utils/init/globals.cpp index bb7208140..982c6f6ad 100644 --- a/src/common/backend/utils/init/globals.cpp +++ b/src/common/backend/utils/init/globals.cpp @@ -75,12 +75,13 @@ bool will_shutdown = false; * NEXT | 92899 | ? | ? * ********************************************/ -const uint32 GRAND_VERSION_NUM = 92901; +const uint32 GRAND_VERSION_NUM = 92903; /******************************************** * 2.VERSION NUM FOR EACH FEATURE * Please write indescending order. ********************************************/ +const uint32 TIMESCALE_DB_VERSION_NUM = 92901; const uint32 SRF_FUSION_VERSION_NUM = 92847; const uint32 INDEX_HINT_VERSION_NUM = 92845; const uint32 INNER_UNIQUE_VERSION_NUM = 92845; @@ -183,7 +184,6 @@ const uint32 GTMLITE_VERSION_NUM = 92110; const uint32 PREDPUSH_VERSION_NUM = 92096; const uint32 SUBLINKPULLUP_VERSION_NUM = 92094; const uint32 PARTIALPUSH_VERSION_NUM = 92087; -const uint32 TIMESCALE_DB_VERSION_NUM = 92901; /* This variable indicates wheather the instance is in progress of upgrade as a whole */ uint32 volatile WorkingGrandVersionNum = GRAND_VERSION_NUM; diff --git a/src/include/nodes/nodes.h b/src/include/nodes/nodes.h index c92b744d8..faf7ae225 100755 --- a/src/include/nodes/nodes.h +++ b/src/include/nodes/nodes.h @@ -833,6 +833,11 @@ typedef enum NodeTag { /* ndpplugin tag */ T_NdpScanCondition, + T_CondInfo, + T_GetDiagStmt, + T_DolphinCallStmt, + T_CallContext, + T_CharsetClause, /* timescaledb plugin tag */ T_ModifyTablePath,