Skip to content

Commit

Permalink
small changes, and update test flags
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkMyCar committed Nov 27, 2024
1 parent 0510ae1 commit cb9b7b6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
10 changes: 7 additions & 3 deletions misc/python/materialize/mzcompose/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,15 +88,17 @@ def get_default_system_parameters(
"enable_0dt_deployment": "true" if zero_downtime else "false",
"enable_0dt_deployment_panic_after_timeout": "true",
"enable_0dt_deployment_sources": (
"true" if version >= MzVersion.parse_mz("v0.125.0-dev") else "false"
"true" if version > MzVersion.parse_mz("v0.126.0-dev") else "false"
),
"enable_alter_swap": "true",
"enable_assert_not_null": "true",
"enable_columnation_lgalloc": "true",
"enable_comment": "true",
"enable_compute_chunked_stack": "true",
"enable_connection_validation_syntax": "true",
"enable_continual_task_builtins": "true",
"enable_continual_task_builtins": (
"true" if version > MzVersion.parse_mz("v0.126.0-dev") else "false"
),
"enable_continual_task_create": "true",
"enable_continual_task_retain": "true",
"enable_continual_task_transform": "true",
Expand Down Expand Up @@ -126,7 +128,9 @@ def get_default_system_parameters(
),
"persist_batch_columnar_format_percent": "100",
"persist_batch_delete_enabled": "true",
"persist_record_schema_id": "true",
"persist_record_schema_id": (
"true" if version >= MzVersion.parse_mz("v0.126.0-dev") else "false"
),
"persist_batch_structured_order": (
"true" if version >= MzVersion.parse_mz("v0.119.0-dev") else "false"
),
Expand Down
2 changes: 1 addition & 1 deletion src/adapter/src/catalog/state.rs
Original file line number Diff line number Diff line change
Expand Up @@ -723,7 +723,7 @@ impl CatalogState {
self.get_entry(item_id)
}

pub fn get_entries(&self) -> impl Iterator<Item = (&GlobalId, &CatalogEntry)> + '_ {
pub fn get_entries(&self) -> impl Iterator<Item = (&CatalogItemId, &CatalogEntry)> + '_ {
self.entry_by_id.iter()
}

Expand Down
2 changes: 1 addition & 1 deletion src/repr/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ pub use crate::relation::{
arb_relation_desc_diff, arb_row_for_relation, ColumnName, ColumnType, NotNullViolation,
PropRelationDescDiff, ProtoColumnName, ProtoColumnType, ProtoRelationDesc, ProtoRelationType,
RelationDesc, RelationDescBuilder, RelationType, RelationVersion, RelationVersionSelector,
TypeDiff, VersionedRelationDesc,
VersionedRelationDesc,
};
pub use crate::row::encode::{preserves_order, RowColumnarDecoder, RowColumnarEncoder};
pub use crate::row::iter::{IntoRowIterator, RowIterator};
Expand Down

0 comments on commit cb9b7b6

Please sign in to comment.