diff options
author | Tamas Bunth <tamas.bunth@collabora.co.uk> | 2017-12-28 11:53:24 +0100 |
---|---|---|
committer | Tamás Bunth <btomi96@gmail.com> | 2017-12-28 11:52:11 +0100 |
commit | 64d4f117447d990ed3215b0dd619e07de26ce417 (patch) | |
tree | c1d5ca94af3201e98dbd612c7a4a5f35073e8e13 /connectivity | |
parent | f80b51ae441e3483a2e9b77a30b932d4e8fba192 (diff) |
Firebird: use 32 bit
Change-Id: I435524d1852a6691b382b93c9b6d2a7705938cd7
Reviewed-on: https://gerrit.libreoffice.org/47130
Reviewed-by: Tamás Bunth <btomi96@gmail.com>
Tested-by: Tamás Bunth <btomi96@gmail.com>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/firebird/DatabaseMetaData.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx index d1de5787ab85..f18d903a7402 100644 --- a/connectivity/source/drivers/firebird/DatabaseMetaData.cxx +++ b/connectivity/source/drivers/firebird/DatabaseMetaData.cxx @@ -874,7 +874,7 @@ uno::Reference< XResultSet > SAL_CALL ODatabaseMetaData::getTypeInfo() // Clob (SQL_BLOB) aRow[1] = new ORowSetValueDecorator(OUString("BLOB")); // BLOB, with subtype 1 aRow[2] = new ORowSetValueDecorator(DataType::CLOB); - aRow[3] = new ORowSetValueDecorator(sal_Int16(2147483647)); // Precision = max length + aRow[3] = new ORowSetValueDecorator(sal_Int32(2147483647)); // Precision = max length aRow[6] = new ORowSetValueDecorator(); // Create Params aRow[9] = new ORowSetValueDecorator( sal_Int16(ColumnSearch::FULL)); // Searchable |