Skip to content
Merged
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
2 changes: 1 addition & 1 deletion Cargo.lock

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

3 changes: 1 addition & 2 deletions src/query/catalog/src/plan/pushdown.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,7 @@ impl PushDownInfo {
if let RemoteExpr::<String>::ColumnRef { id, .. } = &order.0 {
// TODO: support sub column of nested type.
let field = schema.field_with_name(id).unwrap();
let data_type: DataType = field.data_type().into();
if !support(&data_type) {
if !support(&field.data_type().into()) {
return None;
}

Expand Down
1 change: 0 additions & 1 deletion src/query/expression/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ comfy-table = "6"
dashmap = "5.4"
educe = "0.4"
enum-as-inner = "0.5"
enum_dispatch = "0.3.8"
ethnum = { version = "1.3", features = ["serde", "macros"] }
futures = "0.3.24"
hex = "0.4.3"
Expand Down
3 changes: 1 addition & 2 deletions src/query/expression/src/block.rs
Original file line number Diff line number Diff line change
Expand Up @@ -452,9 +452,8 @@ impl DataBlock {
let column = if !block_column_ids.contains(&column_id) {
let default_val = &default_vals[i];
let table_data_type = field.data_type();
let data_type: DataType = table_data_type.into();
BlockEntry {
data_type,
data_type: table_data_type.into(),
value: Value::Scalar(default_val.to_owned()),
}
} else {
Expand Down
145 changes: 0 additions & 145 deletions src/query/expression/src/deserializations/array.rs

This file was deleted.

91 changes: 0 additions & 91 deletions src/query/expression/src/deserializations/boolean.rs

This file was deleted.

Loading