Fix DROP sql for partitioned table.
This commit is contained in:
parent
2ff9577d41
commit
61f90668d8
6 changed files with 33 additions and 4 deletions
|
|
@ -14,7 +14,8 @@ enum class RelPersistence {
|
|||
|
||||
void operator<<(RelPersistence &s, const Pgsql::Value &v);
|
||||
|
||||
enum class RelKind {
|
||||
enum class RelKind
|
||||
{
|
||||
Table, // r
|
||||
Index, // i
|
||||
Sequence, // S
|
||||
|
|
@ -58,6 +59,9 @@ public:
|
|||
QString typeName() const override;
|
||||
QString aclAllPattern() const override;
|
||||
|
||||
protected:
|
||||
virtual QString ddlTypeName() const override;
|
||||
|
||||
private:
|
||||
mutable QString createSqlCache;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue