Commit cfd7148
Fix COPY FROM STDIN regex to handle transpiled SQL
The transpiler removes the space between table name and column list:
- Before: COPY "table" ("col") FROM STDIN
- After: COPY table(col) FROM STDIN
Updated regex to use \s* (optional space) instead of \s+ (required space)
so it matches both formats.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <[email protected]>1 parent 51d27be commit cfd7148
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
608 | 608 | | |
609 | 609 | | |
610 | 610 | | |
611 | | - | |
| 611 | + | |
612 | 612 | | |
613 | 613 | | |
614 | 614 | | |
| |||
0 commit comments