mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-05 21:02:58 +00:00
* chore: rename "convert.rs" to "serde.rs" * proto definition * impl "projection" * add mock_input_exec for test * impl physical plan execution
14 lines
340 B
Rust
14 lines
340 B
Rust
fn main() {
|
|
tonic_build::configure()
|
|
.compile(
|
|
&[
|
|
"greptime/v1/insert.proto",
|
|
"greptime/v1/select.proto",
|
|
"greptime/v1/physical_plan.proto",
|
|
"greptime/v1/greptime.proto",
|
|
],
|
|
&["."],
|
|
)
|
|
.expect("compile proto");
|
|
}
|