Skip to content

Commit d30c40a

Browse files
committed
allow to use nestTables option as createConnection parameter. Closes #399
1 parent 8dad6a7 commit d30c40a

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

lib/connection_config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ function ConnectionConfig (options) {
4040
this.multipleStatements = options.multipleStatements || false;
4141
this.rowsAsArray = options.rowsAsArray || false;
4242
this.namedPlaceholders = options.namedPlaceholders || false;
43+
this.nestTables = (options.nestTables === undefined) ? undefined : options.nestTables;
4344
this.typeCast = (options.typeCast === undefined)
4445
? true
4546
: options.typeCast;

0 commit comments

Comments
 (0)