Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/expr/src/relation/func.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2749,7 +2749,7 @@ impl AggregateFunc {
let nullable = match self {
AggregateFunc::Count => false,
// Use the nullability of the underlying column being aggregated, not the Records wrapping it
AggregateFunc::StringAgg { .. } => match input_type.scalar_type {
AggregateFunc::StringAgg { .. } => match &input_type.scalar_type {
// The outer Record wraps the input in the first position, and any ORDER BY expressions afterwards
SqlScalarType::Record { fields, .. } => match &fields[0].1.scalar_type {
// The inner Record is a (value, separator) tuple
Expand Down
2 changes: 1 addition & 1 deletion src/expr/src/scalar/func/impls/record.rs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ impl LazyUnaryFunc for RecordGet {
}

fn output_sql_type(&self, input_type: SqlColumnType) -> SqlColumnType {
match input_type.scalar_type {
match &input_type.scalar_type {
SqlScalarType::Record { fields, .. } => {
let (_name, ty) = &fields[self.0];
let mut ty = ty.clone();
Expand Down
3 changes: 2 additions & 1 deletion src/interchange/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ maplit.workspace = true
mz-avro = { path = "../avro", features = ["snappy"] }
mz-aws-glue-schema-registry = { path = "../aws-glue-schema-registry" }
mz-ccsr = { path = "../ccsr" }
mz-ore = { path = "../ore", features = ["network", "cli"] }
mz-ore = { path = "../ore", features = ["network", "cli", "stack"] }
mz-repr = { path = "../repr" }
mz-pgrepr = { path = "../pgrepr" }
ordered-float.workspace = true
Expand All @@ -42,6 +42,7 @@ uuid = { workspace = true, features = ["serde"] }

[dev-dependencies]
criterion.workspace = true
prost-types.workspace = true
tokio.workspace = true

[build-dependencies]
Expand Down
Loading
Loading