Kaydet (Commit) 7f653884 authored tarafından Andrzej J.R. Hunt's avatar Andrzej J.R. Hunt

Hopefully the last ambiguous conversion fix (firebird-sdbc).

Change-Id: If290239444f4849e3f5355a3c0a64416fc5c691d
üst ea79b364
......@@ -1039,7 +1039,7 @@ uno::Reference< XResultSet > SAL_CALL ODatabaseMetaData::getColumns(
short aColumnNumber = xRow->getShort(5);
// Firebird stores column numbers beginning with 0 internally
// SDBC expects column numbering to begin with 1.
aCurrentRow.push_back(new ORowSetValueDecorator(aColumnNumber + 1));
aCurrentRow.push_back(new ORowSetValueDecorator(sal_Int32(aColumnNumber + 1)));
}
// 18. Is nullable
if (xRow->getShort(9))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment