We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5e0021 commit 04140e3Copy full SHA for 04140e3
src/postgres/base-pg-store.ts
@@ -29,7 +29,8 @@ export abstract class BasePgStore {
29
const sqlContext = sqlTransactionContext.getStore();
30
return sqlContext ? sqlContext[dbName] : this._sql;
31
}
32
- private readonly _sql: PgSqlClient;
+ /** The raw SQL client instance. */
33
+ readonly _sql: PgSqlClient;
34
35
constructor(sql: PgSqlClient) {
36
this._sql = sql;
0 commit comments