Skip to content

Commit

Permalink
[Backport 2.x] Function str_to_date should work with two-digits year (
Browse files Browse the repository at this point in the history
#3227)

* Function str_to_date should work with two-digits year (#2841)

Signed-off-by: Lantao Jin <[email protected]>
(cherry picked from commit 4224f31)

* address datetype diff between 2.x and main

Signed-off-by: Lantao Jin <[email protected]>

---------

Signed-off-by: Lantao Jin <[email protected]>
  • Loading branch information
LantaoJin authored Jan 24, 2025
1 parent a5b06e2 commit f412de0
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ interface DateTimeFormatHandler {
.put("%T", "HH:mm:ss") // %T => HH:mm:ss
.put("%W", "EEEE") // %W => EEEE - Weekday name (Sunday..Saturday)
.put("%Y", "u") // %Y => yyyy - Year, numeric, 4 digits
.put("%y", "u") // %y => yy - Year, numeric, 2 digits
.put("%y", "uu") // %y => yy - Year, numeric, 2 digits
.put("%f", "n") // %f => n - Nanoseconds
// The following have been implemented but cannot be aligned with
// MySQL due to the limitations of the DatetimeFormatter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,13 @@ private static Stream<Arguments> getTestDataForStrToDate() {
"%Y,%m,%d,%h,%i",
new ExprDatetimeValue("2000-01-01 10:11:00"),
DATETIME),
Arguments.of(
"01-May-13", "%d-%b-%y", new ExprDatetimeValue("2013-05-01 00:00:00"), DATETIME),
Arguments.of(
"01-Jan-00", "%d-%b-%y", new ExprDatetimeValue("2000-01-01 00:00:00"), DATETIME),
// Behavior consistent with OpenSearch Core
Arguments.of(
"31-Jul-99", "%d-%b-%y", new ExprDatetimeValue("2099-07-31 00:00:00"), DATETIME),

// Invalid Arguments (should return null)
Arguments.of("a09:30:17", "a%h:%i:%s", ExprNullValue.of(), UNDEFINED),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1535,6 +1535,14 @@ public void testStrToDate() throws IOException {
TEST_INDEX_DATE, "%d,%m,%Y"));
verifySchema(result, schema("f", null, "datetime"));
verifySome(result.getJSONArray("datarows"), rows("2013-05-01 00:00:00"));
// two digits year case
result =
executeQuery(
String.format(
"source=%s | eval f = str_to_date('1-May-13', '%s') | fields f",
TEST_INDEX_DATE, "%d-%b-%y"));
verifySchema(result, schema("f", null, "datetime"));
verifySome(result.getJSONArray("datarows"), rows("2013-05-01 00:00:00"));
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -925,6 +925,10 @@ public void testStrToDate() throws IOException {
"SELECT str_to_date(firstname," + " '%%Y-%%m-%%d %%h:%%i:%%s') FROM %s LIMIT 2",
TEST_INDEX_BANK));
verifyDataRows(result, rows((Object) null), rows((Object) null));

// two digits year case
result = executeQuery("SELECT str_to_date('23-Oct-17 00:00:00', '%d-%b-%y %h:%i:%s')");
verifyDataRows(result, rows("2017-10-23 00:00:00"));
}

@Test
Expand Down

0 comments on commit f412de0

Please sign in to comment.