diff options
author | Mike Kaganski <mike.kaganski@collabora.com> | 2019-10-02 12:15:16 +0200 |
---|---|---|
committer | Mike Kaganski <mike.kaganski@collabora.com> | 2019-10-02 13:19:23 +0200 |
commit | 26a350bae8485d7a13da0030ec04d0b13615e4da (patch) | |
tree | fe15b87acb8f4fc8dfdb6905c3703dc3e0667e91 /dbaccess | |
parent | 5b01cf958be5b9c835b97d810d429fd3ed89237e (diff) |
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@collabora.com>
Diffstat (limited to 'dbaccess')
-rw-r--r-- | dbaccess/source/filter/hsqldb/utils.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
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()); } |