Skip to content

Commit 44ae98b

Browse files
authored
Merge pull request #34389 from MaterializeInc/dependabot/cargo/simple2-c857efdc00
build(deps): bump the simple2 group with 4 updates
2 parents abab6f4 + c58b2eb commit 44ae98b

File tree

96 files changed

+155
-168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

96 files changed

+155
-168
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/adapter-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ mz-storage-types = { path = "../storage-types" }
1717
serde = "1.0.219"
1818
timely = "0.25.1"
1919
workspace-hack = { version = "0.0.0", path = "../workspace-hack", optional = true }
20-
tracing = "0.1.37"
20+
tracing = "0.1.43"
2121

2222
[package.metadata.cargo-udeps.ignore]
2323
normal = ["workspace-hack"]

src/adapter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,10 @@ timely = "0.25.1"
9191
tokio = { version = "1.48.0", features = ["rt", "time"] }
9292
tokio-postgres = { version = "0.7.15" }
9393
tokio-stream = "0.1.17"
94-
tracing = "0.1.37"
94+
tracing = "0.1.43"
9595
tracing-core = "0.1.35"
9696
tracing-opentelemetry = { version = "0.25.0" }
97-
tracing-subscriber = "0.3.19"
97+
tracing-subscriber = "0.3.22"
9898
thiserror = "2.0.17"
9999
url = "2.5.7"
100100
uuid = { version = "1.18.1" }

src/adapter/src/catalog/state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -994,7 +994,7 @@ impl CatalogState {
994994
let (stmt, resolved_ids) = mz_sql::names::resolve(catalog, stmt)?;
995995
let plan = mz_sql::plan::plan(pcx, catalog, stmt, &Params::empty(), &resolved_ids)?;
996996

997-
return Ok((plan, resolved_ids));
997+
Ok((plan, resolved_ids))
998998
}
999999

10001000
/// Parses the given SQL string into a pair of [`CatalogItem`].

src/adapter/src/coord.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2612,7 +2612,7 @@ impl Coordinator {
26122612
/// table.
26132613
#[instrument]
26142614
fn bootstrap_audit_log_table<'a>(
2615-
&mut self,
2615+
&self,
26162616
table_id: CatalogItemId,
26172617
name: &'a QualifiedItemName,
26182618
table: &'a Table,

src/adapter/src/coord/catalog_implications.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ impl Coordinator {
156156
#[instrument(level = "debug")]
157157
async fn apply_catalog_implications_inner(
158158
&mut self,
159-
mut ctx: Option<&mut ExecuteContext>,
159+
ctx: Option<&mut ExecuteContext>,
160160
implications: Vec<(CatalogItemId, CatalogImplication)>,
161161
cluster_commands: Vec<(ClusterId, CatalogImplication)>,
162162
cluster_replica_commands: Vec<((ClusterId, ReplicaId), CatalogImplication)>,
@@ -203,7 +203,7 @@ impl Coordinator {
203203
match implication {
204204
CatalogImplication::Table(CatalogImplicationKind::Added(table)) => {
205205
self.handle_create_table(
206-
&mut ctx,
206+
&ctx,
207207
&mut table_collections_to_create,
208208
&mut storage_policies_to_initialize,
209209
&mut execution_timestamps_to_set,
@@ -900,8 +900,8 @@ impl Coordinator {
900900

901901
#[instrument(level = "debug")]
902902
async fn handle_create_table(
903-
&mut self,
904-
ctx: &mut Option<&mut ExecuteContext>,
903+
&self,
904+
ctx: &Option<&mut ExecuteContext>,
905905
storage_collections_to_create: &mut BTreeMap<GlobalId, CollectionDescription<Timestamp>>,
906906
storage_policies_to_initialize: &mut BTreeMap<CompactionWindow, BTreeSet<GlobalId>>,
907907
execution_timestamps_to_set: &mut BTreeSet<StatementLoggingId>,
@@ -1155,7 +1155,7 @@ impl Coordinator {
11551155

11561156
#[instrument(level = "debug")]
11571157
async fn handle_create_source(
1158-
&mut self,
1158+
&self,
11591159
storage_collections_to_create: &mut BTreeMap<GlobalId, CollectionDescription<Timestamp>>,
11601160
storage_policies_to_initialize: &mut BTreeMap<CompactionWindow, BTreeSet<GlobalId>>,
11611161
item_id: CatalogItemId,

src/adapter/src/coord/cluster_scheduling.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ impl SchedulingDecision {
109109
impl Coordinator {
110110
#[mz_ore::instrument(level = "debug")]
111111
/// Call each scheduling policy.
112-
pub(crate) async fn check_scheduling_policies(&mut self) {
112+
pub(crate) async fn check_scheduling_policies(&self) {
113113
// (So far, we have only this one policy.)
114114
self.check_refresh_policy();
115115
}

src/adapter/src/coord/command_handler.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ impl Coordinator {
444444

445445
#[mz_ore::instrument(level = "debug")]
446446
async fn handle_generate_sasl_challenge(
447-
&mut self,
447+
&self,
448448
tx: oneshot::Sender<Result<SASLChallengeResponse, AdapterError>>,
449449
role_name: String,
450450
client_nonce: String,
@@ -521,7 +521,7 @@ impl Coordinator {
521521

522522
#[mz_ore::instrument(level = "debug")]
523523
async fn handle_authenticate_password(
524-
&mut self,
524+
&self,
525525
tx: oneshot::Sender<Result<AuthResponse, AdapterError>>,
526526
role_name: String,
527527
password: Option<Password>,

src/adapter/src/coord/ddl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ impl Coordinator {
290290
/// called after this function successfully returns on any built
291291
/// [`DataflowDesc`](mz_compute_types::dataflows::DataflowDesc).
292292
#[instrument(name = "coord::catalog_transact_inner")]
293-
pub(crate) async fn catalog_transact_inner<'a>(
293+
pub(crate) async fn catalog_transact_inner(
294294
&mut self,
295295
conn_id: Option<&ConnectionId>,
296296
ops: Vec<catalog::Op>,

src/adapter/src/coord/message_handler.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ impl Coordinator {
207207
}
208208

209209
#[mz_ore::instrument(level = "debug")]
210-
pub async fn storage_usage_fetch(&mut self) {
210+
pub async fn storage_usage_fetch(&self) {
211211
let internal_cmd_tx = self.internal_cmd_tx.clone();
212212
let client = self.storage_usage_client.clone();
213213

0 commit comments

Comments
 (0)