File tree Expand file tree Collapse file tree 6 files changed +817
-47
lines changed
datafusion-pg-catalog/src Expand file tree Collapse file tree 6 files changed +817
-47
lines changed Original file line number Diff line number Diff line change @@ -36,9 +36,10 @@ the [pgwire](https://github.com/sunng87/pgwire) project.
3636 - [x] pgcli
3737 - [x] VSCode SQLTools
3838 - [ ] Intellij Datagrip
39- - BI
39+ - BI & Visualization
4040 - [x] Metabase
4141 - [ ] PowerBI
42+ - [x] Grafana
4243
4344## Quick Start
4445
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ pub mod pg_settings;
4242pub mod pg_stat_gssapi;
4343pub mod pg_tables;
4444pub mod pg_views;
45+ pub mod quote_ident_udf;
4546
4647const PG_CATALOG_TABLE_PG_AGGREGATE : & str = "pg_aggregate" ;
4748const PG_CATALOG_TABLE_PG_AM : & str = "pg_am" ;
@@ -1481,6 +1482,8 @@ where
14811482 session_context. register_udf ( create_pg_stat_get_numscans ( ) ) ;
14821483 session_context. register_udf ( create_pg_get_constraintdef ( ) ) ;
14831484 session_context. register_udf ( create_pg_get_partition_ancestors_udf ( ) ) ;
1485+ session_context. register_udf ( quote_ident_udf:: create_quote_ident_udf ( ) ) ;
1486+ session_context. register_udf ( quote_ident_udf:: create_parse_ident_udf ( ) ) ;
14841487
14851488 Ok ( ( ) )
14861489}
You can’t perform that action at this time.
0 commit comments