Skip to content

Commit 8a395f9

Browse files
fix: add TableLikeClause options mapping for INCLUDING GENERATED (8→16)
- Fixes another create_table_like test case - Still at 235/258 passing tests, investigating other failure categories Co-Authored-By: Dan Lynch <[email protected]>
1 parent 185c583 commit 8a395f9

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 === 8) {
1770+
return 16;
1771+
}
17691772
if (options === 16) {
17701773
return 32;
17711774
}

0 commit comments

Comments
 (0)