8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 18:43:02 +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:
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<RelationSourceNode> relation;
NestConst<ValueListNode> columns;