Skip to content

Commit

Permalink
can ask for userTablesOnly if schema is not empty (user=schema) in Or…
Browse files Browse the repository at this point in the history
…acle
  • Loading branch information
troopa81 authored and nyalldawson committed Jan 29, 2021
1 parent 5dae2f5 commit e826f10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/oracle/qgsoracleproviderconnection.cpp
Expand Up @@ -263,7 +263,7 @@ QList<QgsAbstractDatabaseProviderConnection::TableProperty> QgsOracleProviderCon
}

const bool geometryColumnsOnly { configuration().value( "geometryColumnsOnly", false ).toBool() };
const bool userTablesOnly { configuration().value( "userTablesOnly", false ).toBool() };
const bool userTablesOnly { configuration().value( "userTablesOnly", false ).toBool() && schema.isEmpty() };
const bool onlyExistingTypes { configuration().value( "onlyExistingTypes", false ).toBool() };
const bool aspatial { ! flags || flags.testFlag( TableFlag::Aspatial ) };

Expand Down

0 comments on commit e826f10

Please sign in to comment.