Skip to content

Commit

Permalink
Add internal TimescaleDB schemas to default_excluded_schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
danieljharvey committed Dec 10, 2024
1 parent ef2545e commit cbefbc4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions crates/configuration/src/version3/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,15 @@ fn default_excluded_schemas() -> Vec<String> {
// From Citus
"columnar".to_string(),
"columnar_internal".to_string(),
// from TimescaleDB
"_timescaledb_catalog".to_string(),
"_timescaledb_functions".to_string(),
"_timescaledb_internal".to_string(),
"_timescaledb_cache".to_string(),
"_timescaledb_config".to_string(),
"timescaledb_experimental".to_string(),
"timescaledb_information".to_string(),
"_timescaledb_debug".to_string(),
]
}

Expand Down
9 changes: 9 additions & 0 deletions crates/configuration/src/version4/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ fn default_excluded_schemas() -> Vec<String> {
// From Citus
"columnar".to_string(),
"columnar_internal".to_string(),
// from TimescaleDB
"_timescaledb_catalog".to_string(),
"_timescaledb_functions".to_string(),
"_timescaledb_internal".to_string(),
"_timescaledb_cache".to_string(),
"_timescaledb_config".to_string(),
"timescaledb_experimental".to_string(),
"timescaledb_information".to_string(),
"_timescaledb_debug".to_string(),
]
}

Expand Down
9 changes: 9 additions & 0 deletions crates/configuration/src/version5/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,15 @@ fn default_excluded_schemas() -> Vec<String> {
// From Citus
"columnar".to_string(),
"columnar_internal".to_string(),
// from TimescaleDB
"_timescaledb_catalog".to_string(),
"_timescaledb_functions".to_string(),
"_timescaledb_internal".to_string(),
"_timescaledb_cache".to_string(),
"_timescaledb_config".to_string(),
"timescaledb_experimental".to_string(),
"timescaledb_information".to_string(),
"_timescaledb_debug".to_string(),
]
}

Expand Down

0 comments on commit cbefbc4

Please sign in to comment.