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