Skip to content

Commit

Permalink
fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosZyk committed Jun 23, 2024
1 parent 9af19a5 commit 7e21696
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -291,15 +291,16 @@ private void fetchMissingDeviceSchemaForQuery(
String database,
TsTable tableInstance,
List<String> attributeColumns,
List<List<Expression>> idPatternList,
Expression attributeFilter,
List<List<Expression>> idDeterminedPredicateList,
Expression idFuzzyPredicate,
List<DeviceEntry> deviceEntryList,
boolean cacheFetchedDevice) {

String table = tableInstance.getTableName();

long queryId = SessionManager.getInstance().requestQueryId();
ShowDevice statement = new ShowDevice(database, table, idPatternList, attributeFilter);
ShowDevice statement =
new ShowDevice(database, table, idDeterminedPredicateList, idFuzzyPredicate);
ExecutionResult executionResult =
coordinator.executeForTableModel(
statement,
Expand Down

0 comments on commit 7e21696

Please sign in to comment.