8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 10:00:38 +01:00

Code improvement.

This commit is contained in:
Adriano dos Santos Fernandes 2024-10-25 18:08:43 -03:00
parent 5b455e3b72
commit 8b0270ff9a

View File

@ -1761,13 +1761,7 @@ public:
public: public:
CreateIndexNode(MemoryPool& p, const MetaName& aName) CreateIndexNode(MemoryPool& p, const MetaName& aName)
: DdlNode(p), : DdlNode(p),
name(p, aName), name(p, aName)
unique(false),
descending(false),
relation(nullptr),
columns(nullptr),
computed(nullptr),
partial(nullptr)
{ {
} }
@ -1788,8 +1782,8 @@ protected:
public: public:
MetaName name; MetaName name;
bool unique; bool unique = false;
bool descending; bool descending = false;
bool active = true; bool active = true;
NestConst<RelationSourceNode> relation; NestConst<RelationSourceNode> relation;
NestConst<ValueListNode> columns; NestConst<ValueListNode> columns;