mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
6206af42fd
* New result files due to new error message/error numbers * Fixed system_mysql_db tests to work with servers table * Added UTF8 charset to table defs mysql-test/include/system_db_struct.inc: WL# 3031 Added servers table to inc file used in system_mysql_db* tests mysql-test/lib/init_db.sql: WL# 3031 Added UTF charset to table def mysql-test/r/mysql.result: WL# 3031 New result files, new error messages shifted error #s up by two mysql-test/r/rpl_sp.result: WL# 3031 New result files, new error messages shifted error #s up by two mysql-test/r/sp.result: WL# 3031 New result files, new error messages shifted error #s up by two mysql-test/r/sp_gis.result: WL# 3031 New result files, new error messages shifted error #s up by two mysql-test/r/system_mysql_db.result: WL #3031 New system_mysql_db tests required adding servers table creation. Some more comments in these tests would have been nice to explain what they do ;) mysql-test/t/system_mysql_db_fix30020.test: WL #3031 New system_mysql_db tests required adding servers table creation. Some more comments in these tests would have been nice to explain what they do ;) mysql-test/t/system_mysql_db_fix40123.test: WL #3031 New system_mysql_db tests required adding servers table creation. Some more comments in these tests would have been nice to explain what they do ;) mysql-test/t/system_mysql_db_fix50030.test: WL #3031 New system_mysql_db tests required adding servers table creation. Some more comments in these tests would have been nice to explain what they do ;) scripts/mysql_create_system_tables.sh: WL# 3031 Added utf8 charset to table def scripts/mysql_fix_privilege_tables.sql: WL# 3031 Added servers table to mysql_fix_privilege_tables
30 lines
831 B
Text
30 lines
831 B
Text
use test;
|
|
drop function if exists a;
|
|
drop function if exists x;
|
|
drop function if exists y;
|
|
create function a() returns int
|
|
return 1;
|
|
create function x() returns int
|
|
return 2;
|
|
Warnings:
|
|
Note 1581 This function 'x' has the same name as a native function.
|
|
create function y() returns int
|
|
return 3;
|
|
Warnings:
|
|
Note 1581 This function 'y' has the same name as a native function.
|
|
select a();
|
|
a()
|
|
1
|
|
select x();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'x'
|
|
select y();
|
|
ERROR 42000: Incorrect parameter count in the call to native function 'y'
|
|
select x(PointFromText("POINT(10 20)")), y(PointFromText("POINT(10 20)"));
|
|
x(PointFromText("POINT(10 20)")) y(PointFromText("POINT(10 20)"))
|
|
10 20
|
|
select test.a(), test.x(), test.y();
|
|
test.a() test.x() test.y()
|
|
1 2 3
|
|
drop function a;
|
|
drop function x;
|
|
drop function y;
|