iffyio commented on code in PR #1485:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/1485#discussion_r1824584846


##########
src/dialect/mod.rs:
##########
@@ -590,6 +590,16 @@ pub trait Dialect: Debug + Any {
     fn supports_try_convert(&self) -> bool {
         false
     }
+
+    /// Returns true if the dialect supports `listen` clause
+    fn supports_listen_clause(&self) -> bool {

Review Comment:
   ```suggestion
       /// Returns true if the dialect supports the `LISTEN` statement
       fn supports_listen(&self) -> bool {
   ```
   since its a top level statement rather than a clause. We can do the same for 
notify



-- 
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]

Reply via email to