We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b455e3 commit 8b0270fCopy full SHA for 8b0270f
src/dsql/DdlNodes.h
@@ -1761,13 +1761,7 @@ class CreateIndexNode : public DdlNode
1761
public:
1762
CreateIndexNode(MemoryPool& p, const MetaName& aName)
1763
: DdlNode(p),
1764
- name(p, aName),
1765
- unique(false),
1766
- descending(false),
1767
- relation(nullptr),
1768
- columns(nullptr),
1769
- computed(nullptr),
1770
- partial(nullptr)
+ name(p, aName)
1771
{
1772
}
1773
@@ -1788,8 +1782,8 @@ class CreateIndexNode : public DdlNode
1788
1782
1789
1783
1790
1784
MetaName name;
1791
- bool unique;
1792
- bool descending;
1785
+ bool unique = false;
1786
+ bool descending = false;
1793
1787
bool active = true;
1794
NestConst<RelationSourceNode> relation;
1795
NestConst<ValueListNode> columns;
0 commit comments