Skip to content

Commit

Permalink
Fix: missing quote around column... (#8241)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fraggle authored Oct 25, 2024
1 parent d8c36dc commit 5277d12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ const connectorsDb = getConnectorsPrimaryDbConnection();

async function listPausedConnectors() {
const connectors: ConnectorBlob[] = await connectorsDb.query(
`SELECT id, "dataSourceId", "workspaceId", "pausedAt", "type" FROM connectors WHERE pausedAt IS NULL`,
`SELECT id, "dataSourceId", "workspaceId", "pausedAt", "type" FROM connectors WHERE "pausedAt" IS NULL`,
{
type: QueryTypes.SELECT,
}
Expand Down

0 comments on commit 5277d12

Please sign in to comment.