From 6dad441bf5da4e50553dc84cb99d767eddadc1fd Mon Sep 17 00:00:00 2001 From: Tamas Bunth Date: Mon, 12 Mar 2018 10:52:59 +0100 Subject: dbahsql: use empty Any for "Other" column MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Ie3e918956a25fba2831d3542e5f3d1b26c4fdc2a Reviewed-on: https://gerrit.libreoffice.org/51117 Tested-by: Jenkins Reviewed-by: Tamás Bunth --- dbaccess/source/filter/hsqldb/rowinputbinary.cxx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 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 HsqlRowInputStream::readOneRow(const ColumnTypeVector& nColType break; default: - // TODO other exception throw WrongFormatException(); } } -- cgit