[Libreoffice-commits] core.git: dbaccess/source
Mike Kaganski (via logerrit)
logerrit at kemper.freedesktop.org
Wed Oct 2 11:20:37 UTC 2019
dbaccess/source/filter/hsqldb/utils.cxx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
New commits:
commit 26a350bae8485d7a13da0030ec04d0b13615e4da
Author: Mike Kaganski <mike.kaganski at collabora.com>
AuthorDate: Wed Oct 2 12:15:16 2019 +0200
Commit: Mike Kaganski <mike.kaganski at collabora.com>
CommitDate: Wed Oct 2 13:19:23 2019 +0200
Clarify that FB limit is not only about table names, but field names, too
Change-Id: Ieaacd0d5d83511d235f8eb53c105bac17958eec6
Reviewed-on: https://gerrit.libreoffice.org/80017
Tested-by: Jenkins
Reviewed-by: Mike Kaganski <mike.kaganski at collabora.com>
diff --git a/dbaccess/source/filter/hsqldb/utils.cxx b/dbaccess/source/filter/hsqldb/utils.cxx
index fce71b6b6c57..c8d28426e812 100644
--- a/dbaccess/source/filter/hsqldb/utils.cxx
+++ b/dbaccess/source/filter/hsqldb/utils.cxx
@@ -131,9 +131,9 @@ void utils::ensureFirebirdTableLength(const OUString& sName)
{
if (sName.getLength() > 30) // Firebird limitation
{
- constexpr char NAME_TOO_LONG[] = "Firebird 3 doesn't currently support table names of more "
- "than 30 characters, please shorten your table names in "
- "the original file and try again.";
+ constexpr char NAME_TOO_LONG[] = "Firebird 3 doesn't support object (table, field) names "
+ "of more than 30 characters; please shorten your object "
+ "names in the original file and try again.";
dbtools::throwGenericSQLException(NAME_TOO_LONG,
::comphelper::getProcessComponentContext());
}
More information about the Libreoffice-commits
mailing list