LucaCappelletti94 commented on code in PR #2077:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/2077#discussion_r2527973984
##########
src/dialect/mod.rs:
##########
@@ -178,6 +178,16 @@ pub trait Dialect: Debug + Any {
/// Determine if a character is a valid unquoted identifier character
fn is_identifier_part(&self, ch: char) -> bool;
+ /// Returns whether the dialect supports hyphenated identifiers
+ fn supports_hyphenated_identifiers(&self) -> bool {
+ false
+ }
+
+ /// Returns whether the dialect supports path-like identifiers
Review Comment:
Done, also added doctest.
--
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]