From 032b6698c11f6b6e67fa3a12c2d34f1f7afe63f6 Mon Sep 17 00:00:00 2001 From: Julien Nabet Date: Fri, 1 Nov 2019 23:14:41 +0100 Subject: Base/Firebird fix column creation Avoid these logs when saving a brand new table in embedded Firebird: warn:legacy.osl:6038:6038:comphelper/source/property/propertycontainerhelper.cxx:181: OPropertyContainerHelper::implPushBackProperty: name already exists! warn:legacy.osl:6038:6038:comphelper/source/property/propertycontainerhelper.cxx:182: OPropertyContainerHelper::implPushBackProperty: handle already exists! ... Change-Id: I305791ad14d0bd18b3a527b848c031e02d661dbb Reviewed-on: https://gerrit.libreoffice.org/81926 Tested-by: Jenkins Reviewed-by: Julien Nabet --- connectivity/source/drivers/firebird/Column.cxx | 1 - 1 file changed, 1 deletion(-) diff --git a/connectivity/source/drivers/firebird/Column.cxx b/connectivity/source/drivers/firebird/Column.cxx index f5da82718b5a..9c13499f8772 100644 --- a/connectivity/source/drivers/firebird/Column.cxx +++ b/connectivity/source/drivers/firebird/Column.cxx @@ -24,7 +24,6 @@ Column::Column() void Column::construct() { - OColumn::construct(); m_sAutoIncrement = "GENERATED BY DEFAULT AS IDENTITY"; registerProperty(OMetaConnection::getPropMap().getNameByIndex( PROPERTY_ID_AUTOINCREMENTCREATION), -- cgit