Skip to content

Commit 6b019fc

Browse files
committed
feat: update visibility of pg_catalog modules
1 parent c11cd44 commit 6b019fc

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

datafusion-postgres/src/pg_catalog.rs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ use datafusion::prelude::{create_udf, Expr, SessionContext};
1919
use postgres_types::Oid;
2020
use tokio::sync::RwLock;
2121

22-
mod empty_table;
23-
mod has_privilege_udf;
24-
mod pg_attribute;
25-
mod pg_class;
26-
mod pg_database;
27-
mod pg_get_expr_udf;
28-
mod pg_namespace;
29-
mod pg_settings;
30-
mod pg_tables;
31-
mod pg_views;
22+
pub mod empty_table;
23+
pub mod has_privilege_udf;
24+
pub mod pg_attribute;
25+
pub mod pg_class;
26+
pub mod pg_database;
27+
pub mod pg_get_expr_udf;
28+
pub mod pg_namespace;
29+
pub mod pg_settings;
30+
pub mod pg_tables;
31+
pub mod pg_views;
3232

3333
const PG_CATALOG_TABLE_PG_AGGREGATE: &str = "pg_aggregate";
3434
const PG_CATALOG_TABLE_PG_AM: &str = "pg_am";
@@ -197,7 +197,7 @@ pub const PG_CATALOG_TABLES: &[&str] = &[
197197
];
198198

199199
#[derive(Debug, Hash, Eq, PartialEq, PartialOrd, Ord)]
200-
enum OidCacheKey {
200+
pub(crate) enum OidCacheKey {
201201
Catalog(String),
202202
Schema(String, String),
203203
/// Table by schema and table name

0 commit comments

Comments
 (0)