-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Bug] Fix timestamp_diff issue when timeunit is year and month (#9574)
- Loading branch information
1 parent
73c4ec7
commit 0f9ef26
Showing
4 changed files
with
106 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
regression-test/data/query/sql_functions/datetime_functions/test_timestampdiff.out
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
-- This file is automatically generated. You should know what you did if you want to edit this | ||
-- !select -- | ||
40 40 40 40 | ||
|
||
-- !select -- | ||
40 40 41 41 | ||
|
||
-- !select -- | ||
24 24 24 24 | ||
|
||
-- !select -- | ||
23 23 23 23 | ||
|
||
-- !select -- | ||
40 40 40 40 | ||
|
||
-- !select -- | ||
40 40 41 41 | ||
|
||
-- !select -- | ||
24 24 24 24 | ||
|
||
-- !select -- | ||
23 23 23 23 |
66 changes: 66 additions & 0 deletions
66
regression-test/suites/query/sql_functions/datetime_functions/test_timestampdiff.groovy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
// Licensed to the Apache Software Foundation (ASF) under one | ||
// or more contributor license agreements. See the NOTICE file | ||
// distributed with this work for additional information | ||
// regarding copyright ownership. The ASF licenses this file | ||
// to you under the Apache License, Version 2.0 (the | ||
// "License"); you may not use this file except in compliance | ||
// with the License. You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, | ||
// software distributed under the License is distributed on an | ||
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
// KIND, either express or implied. See the License for the | ||
// specific language governing permissions and limitations | ||
// under the License. | ||
|
||
suite("test_timestampdiff", "query") { | ||
// non vectorized | ||
sql """ set enable_vectorized_engine = false """ | ||
|
||
qt_select """SELECT TIMESTAMPDIFF(YEAR,DATE('1981-09-11'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(YEAR,'1981-09-11','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(YEAR,DATE('1981-09-11'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(YEAR,'1981-09-11',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
qt_select """SELECT TIMESTAMPDIFF(YEAR,DATE('1981-09-11'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(YEAR,'1981-09-11','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(YEAR,DATE('1981-04-11'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(YEAR,'1981-04-11',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
|
||
qt_select """SELECT TIMESTAMPDIFF(MONTH,DATE('2020-04-27'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-27','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(MONTH,DATE('2020-04-27'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-27',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
qt_select """SELECT TIMESTAMPDIFF(MONTH,DATE('2020-04-29'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-29','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(MONTH,DATE('2020-04-29'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-29',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
// vectorized | ||
sql """ set enable_vectorized_engine = true """ | ||
|
||
qt_select """SELECT TIMESTAMPDIFF(YEAR,DATE('1981-09-11'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(YEAR,'1981-09-11','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(YEAR,DATE('1981-09-11'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(YEAR,'1981-09-11',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
qt_select """SELECT TIMESTAMPDIFF(YEAR,DATE('1981-09-11'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(YEAR,'1981-09-11','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(YEAR,DATE('1981-04-11'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(YEAR,'1981-04-11',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
|
||
qt_select """SELECT TIMESTAMPDIFF(MONTH,DATE('2020-04-27'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-27','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(MONTH,DATE('2020-04-27'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-27',DATE('2022-04-28')) AS `str-date`""" | ||
|
||
qt_select """SELECT TIMESTAMPDIFF(MONTH,DATE('2020-04-29'),'2022-04-28') AS `date-str`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-29','2022-04-28') AS `str-str`, | ||
TIMESTAMPDIFF(MONTH,DATE('2020-04-29'),DATE('2022-04-28')) AS `date-date`, | ||
TIMESTAMPDIFF(MONTH,'2020-04-29',DATE('2022-04-28')) AS `str-date`""" | ||
} |