Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
"@elastic/ecs": "9.3.0",
"@elastic/elasticsearch": "9.3.4",
"@elastic/ems-client": "8.6.3",
"@elastic/esql": "1.4.1",
"@elastic/esql": "1.5.0",
"@elastic/eui": "113.2.1",
"@elastic/eui-theme-borealis": "6.1.0",
"@elastic/filesaver": "1.1.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const defaultScalarFunctionLocations: Location[] = [
Location.WHERE,
Location.STATS,
Location.STATS_BY,
Location.LIMIT_BY,
Location.STATS_WHERE,
Location.STATS_TIMESERIES,
Location.COMPLETION,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ const enrichOperators = (
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand All @@ -214,6 +215,7 @@ const enrichOperators = (
Location.STATS,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ export const logicalOperators: FunctionDefinition[] = [
Location.SORT,
Location.STATS,
Location.STATS_BY,
Location.LIMIT_BY,
Location.STATS_WHERE,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -87,6 +88,7 @@ const otherDefinitions: FunctionDefinition[] = [
Location.ROW,
Location.SORT,
Location.STATS_BY,
Location.LIMIT_BY,
Location.STATS_WHERE,
Location.RERANK,
Location.JOIN,
Expand All @@ -108,6 +110,7 @@ const otherDefinitions: FunctionDefinition[] = [
Location.EVAL,
Location.STATS,
Location.STATS_BY,
Location.LIMIT_BY,
Location.ROW,
Location.WHERE,
Location.ENRICH,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -536,6 +536,7 @@ const addDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -852,6 +853,7 @@ const divDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -1428,6 +1430,7 @@ const equalsDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -1851,6 +1854,7 @@ const greaterThanDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -2274,6 +2278,7 @@ const greaterThanOrEqualDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -3646,6 +3651,7 @@ const lessThanDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -4069,6 +4075,7 @@ const lessThanOrEqualDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -4898,6 +4905,7 @@ const modDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -5214,6 +5222,7 @@ const mulDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -6259,6 +6268,7 @@ const notEqualsDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down Expand Up @@ -6800,6 +6810,7 @@ const subDefinition: FunctionDefinition = {
Location.SORT,
Location.STATS_WHERE,
Location.STATS_BY,
Location.LIMIT_BY,
Location.COMPLETION,
Location.RERANK,
Location.JOIN,
Expand Down
Loading
Loading