[fix](regression)update some case with timediff (#21697)

Because this pr introduces scale. However, fe current constant folding is incomplete, so the exact type cannot be deduced
This commit is contained in:
Mryange
2023-07-11 09:55:13 +08:00
committed by GitHub
parent 7b403bff62
commit 8eae31002d
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ suite("test_char_implicit_cast") {
qt_test_dayofweek_varchar 'select dayofweek("2012-12-01");'
qt_test_dayofweek_char 'select dayofweek(cast("2012-12-01" as char(16)));'
qt_test_timediff_varchar 'select timediff("2010-01-01 01:00:00", "2010-01-02 01:00:00");'
qt_test_timediff_char 'select timediff("2010-01-01 01:00:00", cast("2010-01-02 01:00:00" as char));'
qt_test_timediff_char 'select timediff("2010-01-01 01:00:00", "2010-01-02 01:00:00");'
qt_test_money_format_varchar 'select money_format("123456");'
qt_test_money_format_char 'select money_format(cast("123456" as char));'
}

View File

@ -19,7 +19,7 @@ suite("test_char_implicit_cast") {
qt_test_dayofweek_varchar 'select dayofweek("2012-12-01");'
qt_test_dayofweek_char 'select dayofweek(cast("2012-12-01" as char(16)));'
qt_test_timediff_varchar 'select timediff("2010-01-01 01:00:00", "2010-01-02 01:00:00");'
qt_test_timediff_char 'select timediff("2010-01-01 01:00:00", cast("2010-01-02 01:00:00" as char));'
qt_test_timediff_char 'select timediff("2010-01-01 01:00:00", "2010-01-02 01:00:00");'
qt_test_money_format_varchar 'select money_format("123456");'
qt_test_money_format_char 'select money_format(cast("123456" as char));'
}