We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 345b1ec commit 2d130d7Copy full SHA for 2d130d7
crates/pg_statement_splitter/src/parser.rs
@@ -37,9 +37,6 @@ pub struct Parse {
37
38
impl Parser {
39
pub fn new(sql: &str) -> Self {
40
- // we dont care about whitespace tokens, except for double newlines
41
- // to make everything simpler, we just filter them out
42
- // the token holds the text range, so we dont need to worry about that
43
let tokens = lex(sql);
44
45
let eof_token = Token::eof(usize::from(
0 commit comments