Skip to content

Commit

Permalink
tgz: removed 'false' parameter for fastFetchQuery (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgehrsitz-ite authored Mar 26, 2024
1 parent f541407 commit 7de98d5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,7 @@ public List<CachedRow> fastFetchQuery() throws SQLException, DatabaseException {
return executeAndExtract(
this.database,
createSql(((AbstractJdbcDatabase) this.database).getJdbcCatalogName(catalogAndSchema),
((AbstractJdbcDatabase) this.database).getJdbcSchemaName(catalogAndSchema), this.tableName),
false);
((AbstractJdbcDatabase) this.database).getJdbcSchemaName(catalogAndSchema), this.tableName));
}

@Override
Expand Down

0 comments on commit 7de98d5

Please sign in to comment.