hdimer commented on issue #2409: URL: https://github.com/apache/datafusion-sqlparser-rs/issues/2409#issuecomment-5136119715
Confirmed on main. One wrinkle worth flagging: the fix can't just double `]` unconditionally, because Redshift also parses nested quoted identifiers like `["a]b"]` where the value is stored as the complete double-quoted string `"a]b"` and the inner `]` is literal (doubling it would break that round-trip). The AST doesn't distinguish the two forms, so I double `]` only when the value isn't a complete `"..."` string. Opened #2418. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
