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 2c32dc3 commit d4fbb38Copy full SHA for d4fbb38
packages/orm/src/client/crud/dialects/postgresql.ts
@@ -37,7 +37,7 @@ export class PostgresCrudDialect<Schema extends SchemaDef> extends LateralJoinDi
37
// override node-pg's default type parser to resolve the timezone handling issue
38
// with "TIMESTAMP WITHOUT TIME ZONE" fields
39
// https://github.com/brianc/node-postgres/issues/429
40
- import('pg')
+ import(/* webpackIgnore: true */ 'pg') // suppress bundler analysis warnings
41
.then((pg) => {
42
pg.types.setTypeParser(pg.types.builtins.TIMESTAMP, (value) => {
43
if (typeof value !== 'string') {
0 commit comments