summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dbaccess/source/filter/hsqldb/rowinputbinary.cxx3
1 files changed, 1 insertions, 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<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();
}
}