Skip to content

Commit

Permalink
Cleanup.
Browse files Browse the repository at this point in the history
  • Loading branch information
narreola committed Mar 19, 2024
1 parent c75ee25 commit 23b80df
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/malloy-db-trino/src/trino_connection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export class TrinoConnection implements Connection, PersistSQLResults {
'string': {type: 'string'},
'date': {type: 'date'},

// TODO: cleanup.
// TODO(figutierrez0): cleanup.
/* 'INT64': {type: 'number', numberType: 'integer'},
'FLOAT': {type: 'number', numberType: 'float'},
'FLOAT64': {type: 'number', numberType: 'float'},
Expand Down Expand Up @@ -422,7 +422,8 @@ export class TrinoConnection implements Connection, PersistSQLResults {

public async fetchSchemaForSQLBlock(
_sqlRef: SQLBlock,
{_refreshTimestamp}: FetchSchemaOptions
// eslint-disable-next-line @typescript-eslint/no-unused-vars
{refreshTimestamp}: FetchSchemaOptions
): Promise<
| {structDef: StructDef; error?: undefined}
| {error: string; structDef?: undefined}
Expand Down

0 comments on commit 23b80df

Please sign in to comment.