c2main commented on code in PR #2364:
URL: 
https://github.com/apache/datafusion-sqlparser-rs/pull/2364#discussion_r3367246608


##########
tests/sqlparser_common.rs:
##########
@@ -4643,6 +4645,42 @@ fn parse_create_table_as_table() {
     }
 }
 
+#[test]
+fn parse_table_command() {
+    let dialects = all_dialects_where(|d| d.supports_table_command());
+
+    // Top-level.
+    dialects.verified_stmt("TABLE films");
+    // Schema-qualified.
+    dialects.verified_stmt("TABLE myschema.films");
+    // Database-qualified (three-part name).

Review Comment:
   this is for  MySQL, not PostgreSQL, right ? Maybe a subtle overlap with 
another PR to come for MySQL ?



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