Skip to content

Commit cef8647

Browse files
committed
adapter: Remove the old timestamp selection
1 parent e85b9a5 commit cef8647

File tree

10 files changed

+26
-365
lines changed

10 files changed

+26
-365
lines changed

misc/python/materialize/mzcompose/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def get_minimal_system_parameters(
6464
# -----
6565
# Others (ordered by name)
6666
"allow_real_time_recency": "true",
67-
"constraint_based_timestamp_selection": "verify",
6867
"enable_compute_peek_response_stash": "true",
6968
"enable_0dt_deployment_panic_after_timeout": "true",
7069
"enable_0dt_deployment_sources": (

misc/python/materialize/parallel_workload/action.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1603,7 +1603,6 @@ def __init__(
16031603
"enable_expression_cache",
16041604
"enable_multi_replica_sources",
16051605
"enable_password_auth",
1606-
"constraint_based_timestamp_selection",
16071606
"persist_fast_path_order",
16081607
"mz_metrics_lgalloc_map_refresh_interval",
16091608
"mz_metrics_lgalloc_refresh_interval",

src/adapter-types/src/dyncfgs.rs

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,6 @@ use std::time::Duration;
1313

1414
use mz_dyncfg::{Config, ConfigSet};
1515

16-
use crate::timestamp_selection::ConstraintBasedTimestampSelection;
17-
1816
pub const ALLOW_USER_SESSIONS: Config<bool> = Config::new(
1917
"allow_user_sessions",
2018
true,
@@ -119,12 +117,6 @@ pub const ENABLE_PASSWORD_AUTH: Config<bool> = Config::new(
119117
"Enable password authentication.",
120118
);
121119

122-
pub const CONSTRAINT_BASED_TIMESTAMP_SELECTION: Config<&'static str> = Config::new(
123-
"constraint_based_timestamp_selection",
124-
ConstraintBasedTimestampSelection::const_default().as_str(),
125-
"Whether to use the constraint-based timestamp selection, one of: enabled, disabled, verify",
126-
);
127-
128120
pub const PERSIST_FAST_PATH_ORDER: Config<bool> = Config::new(
129121
"persist_fast_path_order",
130122
false,
@@ -149,6 +141,5 @@ pub fn all_dyncfgs(configs: ConfigSet) -> ConfigSet {
149141
.add(&ENABLE_EXPRESSION_CACHE)
150142
.add(&ENABLE_MULTI_REPLICA_SOURCES)
151143
.add(&ENABLE_PASSWORD_AUTH)
152-
.add(&CONSTRAINT_BASED_TIMESTAMP_SELECTION)
153144
.add(&PERSIST_FAST_PATH_ORDER)
154145
}

src/adapter-types/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,3 @@ pub mod compaction;
1414
pub mod connection;
1515
pub mod dyncfgs;
1616
pub mod timestamp_oracle;
17-
pub mod timestamp_selection;

src/adapter-types/src/timestamp_selection.rs

Lines changed: 0 additions & 51 deletions
This file was deleted.

0 commit comments

Comments
 (0)