We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc8987a commit 76a228cCopy full SHA for 76a228c
src/query/service/src/servers/http/v1/query/http_query.rs
@@ -59,6 +59,7 @@ pub struct HttpQueryRequest {
59
pub pagination: PaginationConf,
60
#[serde(default = "default_as_true")]
61
pub string_fields: bool,
62
+ pub sideload: Option<SideloadConf>,
63
}
64
65
const DEFAULT_MAX_ROWS_IN_BUFFER: usize = 5 * 1000 * 1000;
@@ -141,6 +142,12 @@ impl HttpSessionConf {
141
142
143
144
145
+#[derive(Deserialize, Debug, Clone)]
146
+pub struct SideloadConf {
147
+ pub(crate) stage: Option<String>,
148
+ pub(crate) url: Option<String>,
149
+}
150
+
151
#[derive(Debug, Clone)]
152
pub struct ResponseState {
153
pub running_time_ms: f64,
0 commit comments