mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-16 14:15:50 -06:00
STORAGE clause support, COMPRESS clause support
This commit is contained in:
parent
4ffd790d48
commit
0caf3dbf7f
5 changed files with 59 additions and 14 deletions
|
|
@ -245,6 +245,14 @@ public:
|
|||
{
|
||||
generated = s;
|
||||
}
|
||||
void iSetCompression(const wxString& s)
|
||||
{
|
||||
compression = s;
|
||||
}
|
||||
wxString GetCompression() const
|
||||
{
|
||||
return compression == "p" ? "pglz" : (compression == "l" ? "lz4" : "");
|
||||
}
|
||||
wxString GetIdentity() const
|
||||
{
|
||||
return identity;
|
||||
|
|
@ -315,7 +323,7 @@ public:
|
|||
|
||||
private:
|
||||
wxString varTypename, quotedTypename, defaultVal, tableName, quotedFullTable, defaultStorage, storage, rawTypename;
|
||||
wxString serialSequence, serialSchema, pkCols, inheritedTableName, collation, generated, identity;
|
||||
wxString serialSequence, serialSchema, pkCols, inheritedTableName, collation, generated, identity, compression;
|
||||
long colNumber, length, precision, statistics, attstattarget;
|
||||
long typlen, typmod, inheritedCount;
|
||||
bool isPK, isFK, notNull, isArray, isLocal;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue