iffyio commented on code in PR #2144:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/2144#discussion_r2675480190
##########
src/dialect/mod.rs:
##########
@@ -1216,6 +1216,11 @@ pub trait Dialect: Debug + Any {
fn supports_quote_delimited_string(&self) -> bool {
false
}
+
+ /// Returns true if the dialect considers the `&&` operator as a boolean
AND operator.
+ fn supports_overlap_as_and_operator(&self) -> bool {
Review Comment:
```suggestion
fn supports_double_ampersand_operator(&self) -> bool {
```
we could probably call it something like this? (Its not clear what overlap
means in this context)
--
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]