Skip to content

Commit 8418875

Browse files
committed
Fix typo
Fix a typo `TABELS` -> `TABLES`.
1 parent 79d7050 commit 8418875

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

datafusion-postgres/src/pg_catalog.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ const PG_CATALOG_VIEW_PG_SETTINGS: &str = "pg_settings";
100100
const PG_CATALOG_VIEW_PG_VIEWS: &str = "pg_views";
101101
const PG_CATALOG_VIEW_PG_MATVIEWS: &str = "pg_matviews";
102102
const PG_CATALOG_VIEW_PG_TABLES: &str = "pg_tables";
103-
const PG_CATALOG_VIEW_PG_STAT_USER_TABELS: &str = "pg_stat_user_tables";
103+
const PG_CATALOG_VIEW_PG_STAT_USER_TABLES: &str = "pg_stat_user_tables";
104104
const PG_CATALOG_VIEW_PG_REPLICATION_SLOTS: &str = "pg_replication_slots";
105105

106106
pub const PG_CATALOG_TABLES: &[&str] = &[
@@ -168,7 +168,7 @@ pub const PG_CATALOG_TABLES: &[&str] = &[
168168
PG_CATALOG_VIEW_PG_SETTINGS,
169169
PG_CATALOG_VIEW_PG_VIEWS,
170170
PG_CATALOG_VIEW_PG_MATVIEWS,
171-
PG_CATALOG_VIEW_PG_STAT_USER_TABELS,
171+
PG_CATALOG_VIEW_PG_STAT_USER_TABLES,
172172
PG_CATALOG_VIEW_PG_REPLICATION_SLOTS,
173173
];
174174

@@ -352,7 +352,7 @@ impl<C: CatalogInfo> SchemaProvider for PgCatalogSchemaProvider<C> {
352352
}
353353
PG_CATALOG_VIEW_PG_VIEWS => Ok(Some(Arc::new(pg_views::pg_views()?))),
354354
PG_CATALOG_VIEW_PG_MATVIEWS => Ok(Some(Arc::new(pg_views::pg_matviews()?))),
355-
PG_CATALOG_VIEW_PG_STAT_USER_TABELS => {
355+
PG_CATALOG_VIEW_PG_STAT_USER_TABLES => {
356356
Ok(Some(Arc::new(pg_views::pg_stat_user_tables()?)))
357357
}
358358
PG_CATALOG_VIEW_PG_REPLICATION_SLOTS => {

0 commit comments

Comments
 (0)