diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-30 18:31:56 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-10-02 16:49:31 +0200 |
commit | 7f02173bba836f1f93693732ac675f885d34a1af (patch) | |
tree | 9aff7f56684f3a8a52adda8d880c88bcf3642fb4 | |
parent | 3ade152323d854d1d905586afca5a3060280fcab (diff) |
-Werror,-Wunused-const-variable
Change-Id: Ic4edbbc0bf74887ab9624e4551b54ecbe3538108
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_databasemetadata.cxx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx b/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx index 067c49ad6186..d4c9ea1a5494 100644 --- a/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx +++ b/connectivity/source/drivers/postgresql/pq_databasemetadata.cxx @@ -125,20 +125,6 @@ std::vector #define DEFERRABILITY_INITIALLY_IMMEDIATE 6 #define DEFERRABILITY_NONE 7 -// alphabetically ordered ! -static const int PRIVILEGE_CREATE = 0x1; -static const int PRIVILEGE_DELETE = 0x2; -static const int PRIVILEGE_EXECUTE = 0x4; -static const int PRIVILEGE_INSERT = 0x8; -static const int PRIVILEGE_REFERENCES = 0x10; -static const int PRIVILEGE_RULE = 0x20; -static const int PRIVILEGE_SELECT = 0x40; -static const int PRIVILEGE_TEMPORARY = 0x80; -static const int PRIVILEGE_TRIGGER = 0x100; -static const int PRIVILEGE_UPDATE = 0x200; -static const int PRIVILEGE_USAGE = 0x400; -static const int PRIVILEGE_MAX = PRIVILEGE_USAGE; - void DatabaseMetaData::checkClosed() throw (SQLException, RuntimeException) { |