dbaccess/source/filter/hsqldb/hsqlimport.cxx |   12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

New commits:
commit a63bdb1fb45b5a73fee6c826d302e0ce92876ece
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Fri Dec 21 13:42:24 2018 +0000
Commit:     Julien Nabet <serval2...@yahoo.fr>
CommitDate: Fri Dec 21 18:14:18 2018 +0100

    Resolves: tdf#121838 catch exception for missing column
    
    in database migration
    
    Change-Id: Ied42d1436f14012fb918e8e6775fcbe0f7d5fac5
    Reviewed-on: https://gerrit.libreoffice.org/65545
    Tested-by: Jenkins
    Reviewed-by: Julien Nabet <serval2...@yahoo.fr>

diff --git a/dbaccess/source/filter/hsqldb/hsqlimport.cxx 
b/dbaccess/source/filter/hsqldb/hsqlimport.cxx
index 49d6f978e6b6..b29889c1b6cd 100644
--- a/dbaccess/source/filter/hsqldb/hsqlimport.cxx
+++ b/dbaccess/source/filter/hsqldb/hsqlimport.cxx
@@ -338,11 +338,21 @@ void HsqlImporter::importHsqlDatabase(weld::Window* 
pParent)
     // data
     for (const auto& tableIndex : parser.getTableIndexes())
     {
-        std::vector<ColumnDefinition> aColTypes = 
parser.getTableColumnTypes(tableIndex.first);
         try
         {
+            std::vector<ColumnDefinition> aColTypes = 
parser.getTableColumnTypes(tableIndex.first);
             parseTableRows(tableIndex.second, aColTypes, tableIndex.first);
         }
+        catch (const std::out_of_range& e)
+        {
+            std::unique_ptr<SQLException> ex(new SQLException);
+            const char* msg = e.what();
+            ex->SQLState = OUString(msg, strlen(msg), 
RTL_TEXTENCODING_ASCII_US);
+            // chain errors and keep going
+            if (pException)
+                ex->NextException <<= *pException;
+            pException = std::move(ex);
+        }
         catch (SQLException& ex)
         {
             // chain errors and keep going
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to