Skip to content

Commit

Permalink
fix missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
tgriesser committed Nov 5, 2023
1 parent e7fef29 commit 2fcde1f
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/dialect/sqlite/sqlite-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {
QueryResult,
} from '../../driver/database-connection.js'
import { Driver } from '../../driver/driver.js'
import { SelectQueryNode } from '../../operation-node/select-query-node.js'
import { CompiledQuery } from '../../query-compiler/compiled-query.js'
import { freeze, isFunction } from '../../util/object-utils.js'
import { SqliteDatabase, SqliteDialectConfig } from './sqlite-dialect-config.js'
Expand Down Expand Up @@ -106,9 +107,7 @@ class SqliteConnection implements DatabaseConnection {
}
}
} else {
throw new Error(
'Sqlite driver only supports streaming of select queries'
)
throw new Error('Sqlite driver only supports streaming of select queries')
}
}
}
Expand Down

0 comments on commit 2fcde1f

Please sign in to comment.