Skip to content

Commit 4615c70

Browse files
authoredMar 16, 2025··
refactor: extract connection configurations to root, deprecate old ones. (#1388)
also flip reset connection on release default. ... ... ...
1 parent 774ccb9 commit 4615c70

File tree

3 files changed

+52
-27
lines changed

3 files changed

+52
-27
lines changed
 

‎src/dialect/mssql/mssql-dialect-config.ts

+25-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1+
import { KyselyTypeError } from '../../util/type-error.js'
2+
13
export interface MssqlDialectConfig {
4+
/**
5+
* When `true`, connections are reset to their initial states when released
6+
* back to the pool, resulting in additional requests to the database.
7+
*
8+
* Defaults to `false`.
9+
*/
10+
resetConnectionsOnRelease?: boolean
11+
212
/**
313
* This dialect uses the `tarn` package to manage the connection pool to your
414
* database. To use it as a peer dependency and not bundle it with Kysely's code,
@@ -55,20 +65,26 @@ export interface MssqlDialectConfig {
5565
* ```
5666
*/
5767
tedious: Tedious
68+
69+
/**
70+
* When `true`, connections are validated before being acquired from the pool,
71+
* resulting in additional requests to the database.
72+
*
73+
* Defaults to `true`.
74+
*/
75+
validateConnections?: boolean
5876
}
5977

6078
export interface Tedious {
6179
connectionFactory: () => TediousConnection | Promise<TediousConnection>
6280
ISOLATION_LEVEL: TediousIsolationLevel
6381
Request: TediousRequestClass
64-
TYPES: TediousTypes
82+
// TODO: remove in v0.29.0
6583
/**
66-
* Controls whether connections are reset to their initial states when released back to the pool. Resetting a connection performs additional requests to the database.
67-
* See {@link https://tediousjs.github.io/tedious/api-connection.html#function_reset | connection.reset}.
68-
*
69-
* Defaults to `true`.
84+
* @deprecated use {@link MssqlDialectConfig.resetConnectionsOnRelease} instead.
7085
*/
71-
resetConnectionOnRelease?: boolean
86+
resetConnectionOnRelease?: KyselyTypeError<'deprecated: use `MssqlDialectConfig.resetConnectionsOnRelease` instead'>
87+
TYPES: TediousTypes
7288
}
7389

7490
export interface TediousConnection {
@@ -165,12 +181,11 @@ export interface Tarn {
165181
* which must be implemented by this dialect.
166182
*/
167183
options: Omit<TarnPoolOptions<any>, 'create' | 'destroy' | 'validate'> & {
184+
// TODO: remove in v0.29.0
168185
/**
169-
* Controls whether connections are validated before being acquired from the pool. Connection validation performs additional requests to the database.
170-
*
171-
* Defaults to `true`.
186+
* @deprecated use {@link MssqlDialectConfig.validateConnections} instead.
172187
*/
173-
validateConnections?: boolean
188+
validateConnections?: KyselyTypeError<'deprecated: use `MssqlDialectConfig.validateConnections` instead'>
174189
}
175190

176191
/**

‎src/dialect/mssql/mssql-driver.ts

+21-14
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import { extendStackTrace } from '../../util/stack-trace-utils.js'
3131
import { randomString } from '../../util/random-string.js'
3232
import { Deferred } from '../../util/deferred.js'
3333

34-
const PRIVATE_RELEASE_METHOD = Symbol()
34+
const PRIVATE_RESET_METHOD = Symbol()
3535
const PRIVATE_DESTROY_METHOD = Symbol()
3636

3737
export class MssqlDriver implements Driver {
@@ -41,8 +41,11 @@ export class MssqlDriver implements Driver {
4141
constructor(config: MssqlDialectConfig) {
4242
this.#config = freeze({ ...config })
4343

44-
const { tarn, tedious } = this.#config
45-
const { validateConnections, ...poolOptions } = tarn.options
44+
const { tarn, tedious, validateConnections } = this.#config
45+
const {
46+
validateConnections: deprecatedValidateConnections,
47+
...poolOptions
48+
} = tarn.options
4649

4750
this.#pool = new tarn.Pool({
4851
...poolOptions,
@@ -57,7 +60,8 @@ export class MssqlDriver implements Driver {
5760
// @ts-ignore `tarn` accepts a function that returns a promise here, but
5861
// the types are not aligned and it type errors.
5962
validate:
60-
validateConnections === false
63+
validateConnections === false ||
64+
(deprecatedValidateConnections as any) === false
6165
? undefined
6266
: (connection) => connection.validate(),
6367
})
@@ -101,7 +105,13 @@ export class MssqlDriver implements Driver {
101105
}
102106

103107
async releaseConnection(connection: MssqlConnection): Promise<void> {
104-
await connection[PRIVATE_RELEASE_METHOD]()
108+
if (
109+
this.#config.resetConnectionsOnRelease ||
110+
this.#config.tedious.resetConnectionOnRelease
111+
) {
112+
await connection[PRIVATE_RESET_METHOD]()
113+
}
114+
105115
this.#pool.release(connection)
106116
}
107117

@@ -297,16 +307,13 @@ class MssqlConnection implements DatabaseConnection {
297307
})
298308
}
299309

300-
async [PRIVATE_RELEASE_METHOD](): Promise<void> {
301-
// TODO: flip this to `if (!this.#tedious.resetConnectionOnRelease) {}` in a future PR.
302-
if (this.#tedious.resetConnectionOnRelease !== false) {
303-
await new Promise((resolve, reject) => {
304-
this.#connection.reset((error) => {
305-
if (error) reject(error)
306-
else resolve(undefined)
307-
})
310+
async [PRIVATE_RESET_METHOD](): Promise<void> {
311+
await new Promise((resolve, reject) => {
312+
this.#connection.reset((error) => {
313+
if (error) reject(error)
314+
else resolve(undefined)
308315
})
309-
}
316+
})
310317
}
311318

312319
[PRIVATE_DESTROY_METHOD](): Promise<void> {

‎test/node/src/test-setup.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ import {
3535
InsertObject,
3636
MssqlDialect,
3737
SelectQueryBuilder,
38-
QueryId,
3938
} from '../../../'
4039
import {
4140
OrderByDirection,
@@ -189,19 +188,23 @@ export const DB_CONFIGS: PerDialect<KyselyConfig> = {
189188

190189
mssql: {
191190
dialect: new MssqlDialect({
191+
resetConnectionsOnRelease: false,
192192
tarn: {
193193
options: {
194194
max: POOL_SIZE,
195195
min: 0,
196-
validateConnections: false,
196+
// @ts-expect-error making sure people see the deprecation warning
197+
validateConnections: true,
197198
},
198199
...Tarn,
199200
},
200201
tedious: {
201202
...Tedious,
202203
connectionFactory: () => new Tedious.Connection(DIALECT_CONFIGS.mssql),
203-
resetConnectionOnRelease: false,
204+
// @ts-expect-error making sure people see the deprecation warning
205+
resetConnectionOnRelease: true,
204206
},
207+
validateConnections: false,
205208
}),
206209
plugins: PLUGINS,
207210
},

0 commit comments

Comments
 (0)