Skip to content
Merged
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
7 changes: 7 additions & 0 deletions plugin/v3/plugin.proto
Original file line number Diff line number Diff line change
Expand Up @@ -67,11 +67,18 @@ message Sync {
// marshalled arrow.Schema
bytes table = 1;
}
message BackendOptions {
// table name to use for state backend
string table_name = 1;
// connection path to use for state backend
string connection = 2;
}
message Request {
repeated string tables = 1;
repeated string skip_tables = 2;
bool skip_dependent_tables = 3;
bool deterministic_cq_id = 4;
BackendOptions backend = 5;
}
message Response {
oneof message {
Expand Down