We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 933fcad commit f537b84Copy full SHA for f537b84
Orm/Xtensive.Orm.Oracle/Sql.Drivers.Oracle/v09/Extractor.cs
@@ -142,9 +142,9 @@ protected virtual string ToUpperInvariantIfNeeded(string schemaName)
142
143
private ExtractionContext CreateContext(string catalogName, string[] schemaNames)
144
{
145
- var catalog = new Catalog(catalogName);
+ var catalog = new Catalog(catalogName, true);
146
for(var i = 0; i < schemaNames.Length; i++) {
147
- schemaNames[i] = schemaNames[i].ToUpperInvariant();
+ schemaNames[i] = ToUpperInvariantIfNeeded(schemaNames[i]);
148
}
149
150
var replacements = new Dictionary<string, string>();
0 commit comments