diff options
author | Marko Mäkelä <marko.makela@mariadb.com> | 2022-04-12 09:26:02 +0300 |
---|---|---|
committer | Marko Mäkelä <marko.makela@mariadb.com> | 2022-04-12 09:26:02 +0300 |
commit | ca3bbf4c0c40c784a464485eb660e88949203db9 (patch) | |
tree | abe28da3ea31e1bf14c265441ad458a982801dbc /mysql-test/main/information_schema.result | |
parent | bc75f7ed6d81138f8c2d8d2c800b9cf55bbaff7d (diff) | |
parent | bf70532e3d64011e0d5319317fc938539fc42c28 (diff) | |
download | mariadb-git-ca3bbf4c0c40c784a464485eb660e88949203db9.tar.gz |
Merge 10.5 into 10.6
Diffstat (limited to 'mysql-test/main/information_schema.result')
-rw-r--r-- | mysql-test/main/information_schema.result | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/mysql-test/main/information_schema.result b/mysql-test/main/information_schema.result index ad78f413ea1..0ce5cbea37d 100644 --- a/mysql-test/main/information_schema.result +++ b/mysql-test/main/information_schema.result @@ -2532,3 +2532,24 @@ progress # # End of 10.3 tests # +# +# Start of 10.5 tests +# +# +# MDEV-26507 Assertion `tmp != ((long long) 0x8000000000000000LL)' failed in TIME_from_longlong_datetime_packed +# +CREATE TABLE t1 (a int); +CREATE ALGORITHM=TEMPTABLE VIEW i AS +SELECT a.created +FROM t1 w JOIN INFORMATION_SCHEMA.routines a +WHERE a.routine_name='not existing' + ORDER BY a.last_altered; +SET SESSION sql_mode='ALLOW_INVALID_DATES'; +SELECT * FROM i; +created +SET SESSION sql_mode=DEFAULT; +DROP VIEW i; +DROP TABLE t1; +# +# End of 10.5 tests +# |