wugeer commented on code in PR #1531:
URL:
https://github.com/apache/datafusion-sqlparser-rs/pull/1531#discussion_r1847648899
##########
tests/sqlparser_common.rs:
##########
@@ -11864,6 +11895,56 @@ fn parse_load_data() {
);
}
+#[test]
+fn test_load_extension() {
+ let dialects = all_dialects_where(|d| d.supports_load_extension());
+ let only_supports_load_data_dialects =
+ all_dialects_where(|d| !d.supports_load_extension() &&
d.supports_load_data());
+ let not_supports_load_dialects =
+ all_dialects_where(|d| !d.supports_load_data() &&
!d.supports_load_extension());
Review Comment:
Good idea! Have Done!
--
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]