Commit c428565 1 parent d8404f2 commit c428565 Copy full SHA for c428565
File tree 1 file changed +2
-2
lines changed
dqops/src/main/java/com/dqops/rest/controllers
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ public ResponseEntity<Flux<TableListModel>> findTables(
142
142
if (Strings .isNullOrEmpty (tableNameFilter )) {
143
143
tableNameFilter = "*" ;
144
144
}
145
- tableSearchFilters .setFullTableName (tableNameFilter + "." + schemaNameFilter );
145
+ tableSearchFilters .setFullTableName (schemaNameFilter + "." + tableNameFilter );
146
146
147
147
if (label .isPresent () && label .get ().size () > 0 ) {
148
148
tableSearchFilters .setLabels (label .get ().toArray (String []::new ));
@@ -269,7 +269,7 @@ public ResponseEntity<Flux<ColumnListModel>> findColumns(
269
269
if (Strings .isNullOrEmpty (tableNameFilter )) {
270
270
tableNameFilter = "*" ;
271
271
}
272
- columnSearchFilters .setSchemaTableName (tableNameFilter + "." + schemaNameFilter );
272
+ columnSearchFilters .setSchemaTableName (schemaNameFilter + "." + tableNameFilter );
273
273
274
274
if (label .isPresent () && label .get ().size () > 0 ) {
275
275
columnSearchFilters .setColumnLabels (label .get ().toArray (String []::new ));
You can’t perform that action at this time.
0 commit comments