Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ES|QL: Support ::date in inline cast #123460

Merged
merged 9 commits into from
Mar 11, 2025
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
6 changes: 6 additions & 0 deletions docs/changelog/123460.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
pr: 123460
summary: "ES|QL: Support `::date` in inline cast"
area: ES|QL
type: enhancement
issues:
- 116746
1 change: 1 addition & 0 deletions docs/reference/esql/functions/kibana/inline_cast.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ public enum DataType {
map.put("bool", BOOLEAN);
map.put("int", INTEGER);
map.put("string", KEYWORD);
map.put("date", DataType.DATETIME);
NAME_OR_ALIAS_TO_TYPE = Collections.unmodifiableMap(map);
}

Expand Down
100 changes: 100 additions & 0 deletions x-pack/plugin/esql/qa/testFixtures/src/main/resources/convert.csv-spec
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ ROW date="1985-01-01T00:00:00Z"::datetime, zero=0::datetime
1985-01-01T00:00:00.000Z|1970-01-01T00:00:00.000Z
;

convertToDate
required_capability: casting_operator_for_date
ROW date="1985-01-01T00:00:00Z"::date, zero=0::date
;

date:datetime | zero:datetime
1985-01-01T00:00:00.000Z|1970-01-01T00:00:00.000Z
;

convertToVersion
required_capability: casting_operator
ROW ver="1.2.3"::version
Expand Down Expand Up @@ -351,3 +360,94 @@ z = birth_date + 3 hours + 3 minutes::time_duration, w = birth_date + (3 hours +
birth_date:datetime |x:datetime |y:datetime |z:datetime |w:datetime
1953-09-02T00:00:00Z |1953-09-02T03:00:00Z |1953-09-01T21:00:00Z |1953-09-02T03:03:00Z |1953-09-02T03:03:00Z
;

convertToDatePeriodWithDateCasting
required_capability: cast_string_literal_to_temporal_amount
required_capability: casting_operator_for_date
row x = "2024-01-01"::date
| eval y = x + "3 DAYS"::date_period
;

x:datetime |y:datetime
2024-01-01 |2024-01-04
;

convertToTimeDurationWithDateCasting
required_capability: cast_string_literal_to_temporal_amount
required_capability: casting_operator_for_date
row x = "2024-01-01"::date
| eval y = x + "3 hours"::time_duration
;

x:datetime |y:datetime
2024-01-01 |2024-01-01T03:00:00.000Z
;

convertToDatePeriodTimeDurationWithDateCasting
required_capability: cast_string_literal_to_temporal_amount
required_capability: casting_operator_for_date
row x = "2024-01-01"::date + "3 hours"::time_duration, y = "2024-01-01"::date - to_timeduration("3 hours"),
z = "2024-01-01"::date + "3 DAYS"::date_period, w = "2024-01-01"::date - to_dateperiod("3 days")
| keep x, y, z, w;

x:datetime |y:datetime |z:datetime |w:datetime
2024-01-01T03:00:00.000Z |2023-12-31T21:00:00.000Z |2024-01-04T00:00:00.000Z |2023-12-29T00:00:00.000Z
;

convertToDatePeriodNestedWithDateCasting
required_capability: cast_string_literal_to_temporal_amount
required_capability: casting_operator_for_date
row x = "2024-01-01"::date
| eval y = x + to_dateperiod("3 days"::date_period)
;

x:datetime |y:datetime
2024-01-01 |2024-01-04
;

convertToTimeDurationNestedWithDateCasting
required_capability: cast_string_literal_to_temporal_amount
required_capability: casting_operator_for_date
row x = "2024-01-01"::date
| eval y = x + to_timeduration("3 hours"::time_duration)
;

x:datetime |y:datetime
2024-01-01 |2024-01-01T03:00:00.000Z
;

testEvalWithDateCasting
required_capability: casting_operator_for_date
row x = "1986-06-26T00:00:00.000Z"
| eval y = x::date, z = y + 10 years
;

x:keyword | y:datetime | z:datetime
1986-06-26T00:00:00.000Z | 1986-06-26T00:00:00.000Z | 1996-06-26T00:00:00.000Z
;


filteringWithDateCasting
required_capability: casting_operator_for_date
from employees
| where birth_date < "2023-08-25T11:25:41.052Z"::date - 70 years
| sort emp_no
| keep emp_no, birth_date;

emp_no:integer | birth_date:datetime
10006 | 1953-04-20T00:00:00.000Z
10009 | 1952-04-19T00:00:00.000Z
10019 | 1953-01-23T00:00:00.000Z
10020 | 1952-12-24T00:00:00.000Z
10022 | 1952-07-08T00:00:00.000Z
10026 | 1953-04-03T00:00:00.000Z
10035 | 1953-02-08T00:00:00.000Z
10051 | 1953-07-28T00:00:00.000Z
10063 | 1952-08-06T00:00:00.000Z
10066 | 1952-11-13T00:00:00.000Z
10067 | 1953-01-07T00:00:00.000Z
10072 | 1952-05-15T00:00:00.000Z
10076 | 1952-06-13T00:00:00.000Z
10097 | 1952-02-27T00:00:00.000Z
10100 | 1953-04-21T00:00:00.000Z
;
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,11 @@ public enum Cap {
*/
CASTING_OPERATOR,

/**
* Support for the ::date casting operator
*/
CASTING_OPERATOR_FOR_DATE,

/**
* Blocks can be labelled with {@link org.elasticsearch.compute.data.Block.MvOrdering#SORTED_ASCENDING} for optimizations.
*/
Expand Down