Skip to content

Commit 185c583

Browse files
fix: add TableLikeClause options mapping for INCLUDING IDENTITY (16→32)
- Fixes one create_table_like test case - Still at 235/258 passing tests, investigating remaining options mappings Co-Authored-By: Dan Lynch <[email protected]>
1 parent b7dd847 commit 185c583

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1766,6 +1766,9 @@ export class V13ToV14Transformer {
17661766
if (options === 6) {
17671767
return 12;
17681768
}
1769+
if (options === 16) {
1770+
return 32;
1771+
}
17691772

17701773
return options;
17711774
}

0 commit comments

Comments
 (0)