Typo: aCatlog->aCatalog
Change-Id: I875e94e47d44101a840b711de174f38ad4b85b4e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/152357 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Jenkins
This commit is contained in:
parent
27bf610d31
commit
3070091c9e
3 changed files with 13 additions and 13 deletions
|
@ -815,13 +815,13 @@ static OUString impl_doComposeTableName( const Reference< XDatabaseMetaData >& _
|
|||
OUStringBuffer aComposedName;
|
||||
|
||||
OUString sCatalogSep;
|
||||
bool bCatlogAtStart = true;
|
||||
bool bCatalogAtStart = true;
|
||||
if ( !_rCatalog.isEmpty() && aNameComps.bCatalogs )
|
||||
{
|
||||
sCatalogSep = _rxMetaData->getCatalogSeparator();
|
||||
bCatlogAtStart = _rxMetaData->isCatalogAtStart();
|
||||
bCatalogAtStart = _rxMetaData->isCatalogAtStart();
|
||||
|
||||
if ( bCatlogAtStart && !sCatalogSep.isEmpty())
|
||||
if ( bCatalogAtStart && !sCatalogSep.isEmpty())
|
||||
{
|
||||
aComposedName.append( _bQuote ? quoteName( sQuoteString, _rCatalog ) : _rCatalog );
|
||||
aComposedName.append( sCatalogSep );
|
||||
|
@ -838,7 +838,7 @@ static OUString impl_doComposeTableName( const Reference< XDatabaseMetaData >& _
|
|||
aComposedName.append( _bQuote ? quoteName( sQuoteString, _rName ) : _rName );
|
||||
|
||||
if ( !_rCatalog.isEmpty()
|
||||
&& !bCatlogAtStart
|
||||
&& !bCatalogAtStart
|
||||
&& !sCatalogSep.isEmpty()
|
||||
&& aNameComps.bCatalogs
|
||||
)
|
||||
|
|
|
@ -511,9 +511,9 @@ OUString OSingleSelectQueryComposer::impl_getColumnRealName_throw(const Referenc
|
|||
{
|
||||
if(sTableName.indexOf('.') != -1)
|
||||
{
|
||||
OUString aCatlog,aSchema,aTable;
|
||||
::dbtools::qualifiedNameComponents(m_xMetaData,sTableName,aCatlog,aSchema,aTable,::dbtools::EComposeRule::InDataManipulation);
|
||||
sTableName = ::dbtools::composeTableName( m_xMetaData, aCatlog, aSchema, aTable, true, ::dbtools::EComposeRule::InDataManipulation );
|
||||
OUString aCatalog,aSchema,aTable;
|
||||
::dbtools::qualifiedNameComponents(m_xMetaData,sTableName,aCatalog,aSchema,aTable,::dbtools::EComposeRule::InDataManipulation);
|
||||
sTableName = ::dbtools::composeTableName( m_xMetaData, aCatalog, aSchema, aTable, true, ::dbtools::EComposeRule::InDataManipulation );
|
||||
}
|
||||
else if (!sTableName.isEmpty())
|
||||
sTableName = ::dbtools::quoteName(aQuote,sTableName);
|
||||
|
@ -1660,9 +1660,9 @@ void OSingleSelectQueryComposer::setConditionByColumn( const Reference< XPropert
|
|||
xColumn->getPropertyValue(PROPERTY_TABLENAME) >>= sTableName;
|
||||
if(sTableName.indexOf('.') != -1)
|
||||
{
|
||||
OUString aCatlog,aSchema,aTable;
|
||||
::dbtools::qualifiedNameComponents(m_xMetaData,sTableName,aCatlog,aSchema,aTable,::dbtools::EComposeRule::InDataManipulation);
|
||||
sTableName = ::dbtools::composeTableName( m_xMetaData, aCatlog, aSchema, aTable, true, ::dbtools::EComposeRule::InDataManipulation );
|
||||
OUString aCatalog,aSchema,aTable;
|
||||
::dbtools::qualifiedNameComponents(m_xMetaData,sTableName,aCatalog,aSchema,aTable,::dbtools::EComposeRule::InDataManipulation);
|
||||
sTableName = ::dbtools::composeTableName( m_xMetaData, aCatalog, aSchema, aTable, true, ::dbtools::EComposeRule::InDataManipulation );
|
||||
}
|
||||
else
|
||||
sTableName = ::dbtools::quoteName(aQuote,sTableName);
|
||||
|
|
|
@ -295,9 +295,9 @@ bool DlgFilterCrit::getCondition(const weld::ComboBox& _rField,const weld::Combo
|
|||
{
|
||||
// properly quote all parts of the table name, so
|
||||
// e.g. <schema>.<table> becomes "<schema>"."<table>"
|
||||
OUString aCatlog,aSchema,aTable;
|
||||
::dbtools::qualifiedNameComponents( m_xMetaData, sTableName, aCatlog, aSchema, aTable, ::dbtools::EComposeRule::InDataManipulation );
|
||||
sTableName = ::dbtools::composeTableName( m_xMetaData, aCatlog, aSchema, aTable, true, ::dbtools::EComposeRule::InDataManipulation );
|
||||
OUString aCatalog,aSchema,aTable;
|
||||
::dbtools::qualifiedNameComponents( m_xMetaData, sTableName, aCatalog, aSchema, aTable, ::dbtools::EComposeRule::InDataManipulation );
|
||||
sTableName = ::dbtools::composeTableName( m_xMetaData, aCatalog, aSchema, aTable, true, ::dbtools::EComposeRule::InDataManipulation );
|
||||
}
|
||||
}
|
||||
xColumn->getPropertyValue(PROPERTY_REALNAME) >>= _rFilter.Name;
|
||||
|
|
Loading…
Reference in a new issue