@@ -100,7 +100,7 @@ const PG_CATALOG_VIEW_PG_SETTINGS: &str = "pg_settings";
100100const PG_CATALOG_VIEW_PG_VIEWS : & str = "pg_views" ;
101101const PG_CATALOG_VIEW_PG_MATVIEWS : & str = "pg_matviews" ;
102102const 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" ;
104104const PG_CATALOG_VIEW_PG_REPLICATION_SLOTS : & str = "pg_replication_slots" ;
105105
106106pub 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