You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
parse_sql normally doesn't care whether a single statement is terminated by a semicolon or end of string, but when parsing UNCACHE it does.
This deviation seems like a bug.
Discovered on sqlparser v0.43.1, tested on v0.45.0:
use sqlparser::{
dialect::GenericDialect,
parser::{Parser,ParserError},};fnmain(){let dialect = GenericDialect{};// With other SQL, semicolon being there or not does not seem to matter:{let no_semicolon = Parser::parse_sql(&dialect,"select 1");assert!(no_semicolon.is_ok());}{let with_semicolon = Parser::parse_sql(&dialect,"select 1;");assert!(with_semicolon.is_ok());}// With the UNCACHE statement, it does seem to matter.// Parsing only works when the semicolon is omitted:{let no_semicolon = Parser::parse_sql(&dialect,"uncache table foo");println!("no semicolon: {no_semicolon:?}");assert!(no_semicolon.is_ok());}{// BUGlet with_semicolon = Parser::parse_sql(&dialect,"uncache table foo;");println!("with semicolon: {with_semicolon:?}");assert_eq!(
with_semicolon,Err(ParserError::ParserError("Expected an `EOF`, found: ; at Line: 1, Column 18".to_string())));}}
The text was updated successfully, but these errors were encountered:
parse_sql
normally doesn't care whether a single statement is terminated by a semicolon or end of string, but when parsingUNCACHE
it does.This deviation seems like a bug.
Discovered on sqlparser v0.43.1, tested on v0.45.0:
The text was updated successfully, but these errors were encountered: