ovr commented on PR #3037:
URL:
https://github.com/apache/arrow-datafusion/pull/3037#issuecomment-1205609941
Right now, DF uses Generic Dialect for `sqlparser`, but it's allowed only
for `PostgreSqlDialect`
```rust
Token::ShiftLeft if dialect_of!(self is PostgreSqlDialect) => {
Some(BinaryOperator::PGBitwiseShiftLeft)
}
Token::ShiftRight if dialect_of!(self is PostgreSqlDialect) => {
Some(BinaryOperator::PGBitwiseShiftRight)
}
```
@alamb what should I do with it? Should I Introduce new methods for Dialect
to allow these operators with Generic dialect?
Thanks
--
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]