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 83caef9 commit 46eee2fCopy full SHA for 46eee2f
specification/esql/query/QueryRequest.ts
@@ -38,6 +38,12 @@ export interface Request extends RequestBase {
38
* The character to use between values within a CSV row. Only valid for the CSV format.
39
*/
40
delimiter?: string
41
+ /**
42
+ * Should columns that are entirely `null` be removed from the `columns` and `values` portion of the results?
43
+ * Defaults to `false`. If `true` then the response will include an extra section under the name `all_columns` which has the name of all columns.
44
+ * @server_default false
45
+ */
46
+ drop_null_columns?: boolean
47
}
48
/**
49
* Use the `query` element to start a query. Use `time_zone` to specify an execution time zone and `columnar` to format the answer.
0 commit comments