mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 15:23:03 +01:00
Code improvement.
This commit is contained in:
parent
5b455e3b72
commit
8b0270ff9a
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user