summaryrefslogtreecommitdiff
path: root/dbaccess/source/core/api/FilteredContainer.cxx
diff options
context:
space:
mode:
authorOcke Janssen <oj@openoffice.org>2002-10-07 12:09:48 +0000
committerOcke Janssen <oj@openoffice.org>2002-10-07 12:09:48 +0000
commit58b26608a764f02e6be13618a71c6baf5982cc6d (patch)
tree6b9277c8cef302b827793b202a78e52b74b06b5b /dbaccess/source/core/api/FilteredContainer.cxx
parent2d8d2de1b1f43b69434fe835d6ecb0fa7304d135 (diff)
#i3289# correct table name quoting so that in every situation the correct schema, catalog is used
Diffstat (limited to 'dbaccess/source/core/api/FilteredContainer.cxx')
-rw-r--r--dbaccess/source/core/api/FilteredContainer.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbaccess/source/core/api/FilteredContainer.cxx b/dbaccess/source/core/api/FilteredContainer.cxx
index bb6cf9a0deba..443828289496 100644
--- a/dbaccess/source/core/api/FilteredContainer.cxx
+++ b/dbaccess/source/core/api/FilteredContainer.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: FilteredContainer.cxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: oj $ $Date: 2002-08-26 07:59:23 $
+ * last change: $Author: oj $ $Date: 2002-10-07 12:57:29 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -262,7 +262,7 @@ namespace dbaccess
// we're not interested in the "wasNull", as the getStrings would return an empty string in
// that case, which is sufficient here
- composeTableName(m_xMetaData, sCatalog, sSchema, sName, sComposedName, sal_False);
+ composeTableName(m_xMetaData, sCatalog, sSchema, sName, sComposedName, sal_False,::dbtools::eInDataManipulation);
bFilterMatch = bNoTableFilters
|| ((nTableFilterLen != 0) && (NULL != bsearch(&sComposedName, aTableFilter.getConstArray(), nTableFilterLen, sizeof(::rtl::OUString), NameCompare)));
// the table is allowed to "pass" if we had no filters at all or any of the non-wildcard filters matches