feat: add QueryContext to DdlTaskRequest and FlowRequestHeader (#166)

This commit is contained in:
Weny Xu
2024-05-09 15:27:41 +09:00
committed by GitHub
parent 5c28f1d7ca
commit e152fcbf17
18 changed files with 5846 additions and 3186 deletions
+7
View File
@@ -20,6 +20,13 @@ option java_package = "io.greptime.v1";
option java_outer_classname = "Common";
option go_package = "github.com/GreptimeTeam/greptime-proto/go/greptime/v1";
message QueryContext {
string current_catalog = 1;
string current_schema = 2;
string timezone = 4;
map<string, string> extensions = 5;
}
message RequestHeader {
// The `catalog` that is selected to be used in this request.
string catalog = 1;