summaryrefslogtreecommitdiff
path: root/src/dalstorage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/dalstorage.cpp')
-rw-r--r--src/dalstorage.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/dalstorage.cpp b/src/dalstorage.cpp
index c1b517ec..51619007 100644
--- a/src/dalstorage.cpp
+++ b/src/dalstorage.cpp
@@ -370,7 +370,10 @@ DALStorage::createTable(const std::string& tblName,
alreadyExists += tblName;
alreadyExists += "' already exists";
#elif defined (POSTGRESQL_SUPPORT)
- // TODO
+ std::string alreadyExists("table ");
+ alreadyExists += tblName;
+ alreadyExists += " already exists";
+
#else // SQLITE_SUPPORT
std::string alreadyExists("table ");
alreadyExists += tblName;