mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-02 13:12:16 +00:00
Correctly tokenize nested comments (#1629)
This commit is contained in:
parent
94ea20628f
commit
8bc63f0e4a
4 changed files with 109 additions and 18 deletions
|
@ -241,6 +241,10 @@ impl Dialect for PostgreSqlDialect {
|
|||
fn supports_empty_projections(&self) -> bool {
|
||||
true
|
||||
}
|
||||
|
||||
fn supports_nested_comments(&self) -> bool {
|
||||
true
|
||||
}
|
||||
}
|
||||
|
||||
pub fn parse_create(parser: &mut Parser) -> Option<Result<Statement, ParserError>> {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue