diff --git a/src/dsql/DdlNodes.h b/src/dsql/DdlNodes.h index edf0f1b69b..ffa46aa959 100644 --- a/src/dsql/DdlNodes.h +++ b/src/dsql/DdlNodes.h @@ -1761,13 +1761,7 @@ public: public: CreateIndexNode(MemoryPool& p, const MetaName& aName) : DdlNode(p), - name(p, aName), - unique(false), - descending(false), - relation(nullptr), - columns(nullptr), - computed(nullptr), - partial(nullptr) + name(p, aName) { } @@ -1788,8 +1782,8 @@ protected: public: MetaName name; - bool unique; - bool descending; + bool unique = false; + bool descending = false; bool active = true; NestConst relation; NestConst columns;