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 2d4d96d commit 1f734a8Copy full SHA for 1f734a8
packages/transform/src/transformers/v15-to-v16.ts
@@ -508,6 +508,10 @@ export class V15ToV16Transformer {
508
A_Const(node: PG15.A_Const, context: TransformerContext): any {
509
const result: any = {};
510
511
+ if (node.isnull !== undefined && !node.isnull) {
512
+ result.isnull = node.isnull;
513
+ }
514
+
515
if (node.sval !== undefined) {
516
result.sval = node.sval;
517
}
0 commit comments