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
235 changes: 234 additions & 1 deletion Cargo.lock

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

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ datafusion = "51.0.0"
datafusion-cli = "51.0.0"
datafusion-proto = "51.0.0"
datafusion-proto-common = "51.0.0"
datafusion-substrait = "51.0.0"
object_store = "0.12"
prost = "0.14"
prost-types = "0.14"
Expand Down Expand Up @@ -92,6 +93,9 @@ rpath = false
[profile.ci]
inherits = "dev"
incremental = false
debug = false
debug-assertions = false
strip = "debuginfo"

# ci turns off debug info, etc. for dependencies to allow for smaller binaries making caching more effective
[profile.ci.package."*"]
Expand Down
5 changes: 4 additions & 1 deletion ballista/core/proto/ballista.proto
Original file line number Diff line number Diff line change
Expand Up @@ -537,8 +537,11 @@ message UpdateTaskStatusResult {
message ExecuteQueryParams {
oneof query {
bytes logical_plan = 1;
string sql = 2 [deprecated=true]; // I'd suggest to remove this, if SQL needed use `flight-sql`
bytes substrait_plan = 6;
}
// reserved after removing deprecated `sql` query type.
reserved 2;
reserved "sql";

string session_id = 3;
repeated KeyValuePair settings = 4;
Expand Down
Loading