diff options
author | Alexander Barkov <bar@mariadb.org> | 2017-08-14 11:12:17 +0400 |
---|---|---|
committer | Alexander Barkov <bar@mariadb.org> | 2017-08-14 11:12:17 +0400 |
commit | 9d853230077a97db819abc69a9197ab0b5f5aff2 (patch) | |
tree | f692c17c16849edeab2a12a586c952572a74ec09 /mysql-test/r/func_test.result | |
parent | 0f554dd0fdc54a07e38d6fd28b2f79a3dfc08713 (diff) | |
download | mariadb-git-9d853230077a97db819abc69a9197ab0b5f5aff2.tar.gz |
MDEV-13500 sql_mode=ORACLE: can't create a virtual column with function MOD
Fixing Item_func_mod::print() to print "arg1 MOD arg2" instea of "arg1 % arg2"
Diffstat (limited to 'mysql-test/r/func_test.result')
-rw-r--r-- | mysql-test/r/func_test.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/func_test.result b/mysql-test/r/func_test.result index 8f175a6805b..4243ed9cfb0 100644 --- a/mysql-test/r/func_test.result +++ b/mysql-test/r/func_test.result @@ -62,7 +62,7 @@ explain extended select 10 % 7, 10 mod 7, 10 div 3; id select_type table type possible_keys key key_len ref rows filtered Extra 1 SIMPLE NULL NULL NULL NULL NULL NULL NULL NULL No tables used Warnings: -Note 1003 select 10 % 7 AS `10 % 7`,10 % 7 AS `10 mod 7`,10 DIV 3 AS `10 div 3` +Note 1003 select 10 MOD 7 AS `10 % 7`,10 MOD 7 AS `10 mod 7`,10 DIV 3 AS `10 div 3` select 18446744073709551615, 18446744073709551615 DIV 1, 18446744073709551615 DIV 2; 18446744073709551615 18446744073709551615 DIV 1 18446744073709551615 DIV 2 18446744073709551615 18446744073709551615 9223372036854775807 |