[Libreoffice-commits] core.git: connectivity/source
Stephan Bergmann (via logerrit)
logerrit at kemper.freedesktop.org
Wed Sep 29 11:24:36 UTC 2021
connectivity/source/drivers/postgresql/pq_statement.cxx | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
New commits:
commit 63c22a7c309a866c4580c2bf028a0d2ece9ee1c0
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Wed Sep 29 10:41:11 2021 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Wed Sep 29 13:24:03 2021 +0200
"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 at redhat.com>
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
{
More information about the Libreoffice-commits
mailing list