Skip to content

fix(pglt_statement_splitter): properly split for windows #216

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Mar 10, 2025
13 changes: 13 additions & 0 deletions crates/pglt_statement_splitter/tests/data/with_comments__4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
-- test
select id, name, test1231234123, unknown from co;

-- in between two statements

select 14433313331333 -- after a statement

alter table --within a statement
test drop column id;

select lower('test');
--after a statement

Loading