dbaccess/source/filter/hsqldb/rowinputbinary.cxx |    3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 6dad441bf5da4e50553dc84cb99d767eddadc1fd
Author: Tamas Bunth <tamas.bu...@collabora.co.uk>
Date:   Mon Mar 12 10:52:59 2018 +0100

    dbahsql: use empty Any for "Other" column
    
    Change-Id: Ie3e918956a25fba2831d3542e5f3d1b26c4fdc2a
    Reviewed-on: https://gerrit.libreoffice.org/51117
    Tested-by: Jenkins <c...@libreoffice.org>
    Reviewed-by: Tamás Bunth <btom...@gmail.com>

diff --git a/dbaccess/source/filter/hsqldb/rowinputbinary.cxx 
b/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
index 30097d59f78b..a69d696bf1b2 100644
--- a/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
+++ b/dbaccess/source/filter/hsqldb/rowinputbinary.cxx
@@ -348,7 +348,7 @@ std::vector<Any> HsqlRowInputStream::readOneRow(const 
ColumnTypeVector& nColType
             }
             break;
             case DataType::OTHER:
-                // TODO
+                aData.push_back(Any{}); // TODO
                 break;
             case DataType::BINARY:
             case DataType::VARBINARY:
@@ -364,7 +364,6 @@ std::vector<Any> HsqlRowInputStream::readOneRow(const 
ColumnTypeVector& nColType
             break;
 
             default:
-                // TODO other exception
                 throw WrongFormatException();
         }
     }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to