summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2021-09-29 10:41:11 +0200
committerStephan Bergmann <sbergman@redhat.com>2021-09-29 13:24:03 +0200
commit63c22a7c309a866c4580c2bf028a0d2ece9ee1c0 (patch)
tree463f3d12a23f1b26c37fa0a94ba3913ba5c49d58 /connectivity
parent4ac099d45d545ff1a233575a183953ab73e50267 (diff)
"is missing" has gone missing
...in 4c1bf9d7790ca037933c3c6825d48736572a1886 "Make loplugin:bufferadd look through O[U]String::operator std::[u16]string_view" (thanks to Ming Hua for spotting it) Change-Id: I0fa18b0a5c824cb77988edda1ba8971d2ab86366 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122798 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/postgresql/pq_statement.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_statement.cxx b/connectivity/source/drivers/postgresql/pq_statement.cxx
index 9fc87bc761c2..792fca0f1380 100644
--- a/connectivity/source/drivers/postgresql/pq_statement.cxx
+++ b/connectivity/source/drivers/postgresql/pq_statement.cxx
@@ -459,7 +459,8 @@ bool executePostgresCommand( const OString & cmd, struct CommandData *data )
+ OUStringToOString( schema, ConnectionSettings::encoding ) + "."
+ OUStringToOString( table, ConnectionSettings::encoding )
+ ", because resultset does not contain a part of the primary key ( column "
- + OUStringToOString( sourceTableKeys[i], ConnectionSettings::encoding );
+ + OUStringToOString( sourceTableKeys[i], ConnectionSettings::encoding )
+ + " is missing )";
}
else
{