Skip to content

Commit c0277c0

Browse files
authored
[neon-http] fix: use correct method for querying rqb v2 (#4461)
1 parent 199e5ec commit c0277c0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

drizzle-orm/src/neon-http/session.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@ export class NeonHttpPreparedQuery<
101101

102102
this.logger.logQuery(this.query.sql, params);
103103

104-
const { client, query, customResultMapper } = this;
104+
const { clientQuery, query, customResultMapper } = this;
105105

106-
const result = await client(
106+
const result = await clientQuery(
107107
query.sql,
108108
params,
109109
token === undefined

0 commit comments

Comments
 (0)