Skip to content

Commit 8e2fd72

Browse files
fix: implement hybrid DeclareCursorStmt options transformation to handle all cursor types
Co-Authored-By: Dan Lynch <[email protected]>
1 parent 09baf55 commit 8e2fd72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/transform/src/transformers/v13-to-v14.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ export class V13ToV14Transformer {
726726
if (node.options === 48) {
727727
result.options = 288;
728728
} else {
729-
result.options = node.options;
729+
result.options = (node.options & ~32) | 256;
730730
}
731731
}
732732

0 commit comments

Comments
 (0)