mirror of
				https://github.com/MariaDB/server.git
				synced 2025-10-31 10:56:12 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			50 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
	
		
			1.6 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
| include/master-slave.inc
 | |
| [connection master]
 | |
| connection master;
 | |
| CREATE FUNCTION metaphon RETURNS STRING SONAME "UDF_EXAMPLE_LIB";
 | |
| SELECT metaphon('master');
 | |
| metaphon('master')
 | |
| MSTR
 | |
| CREATE FUNCTION metaphon RETURNS INT SONAME "UDF_EXAMPLE_LIB";
 | |
| ERROR HY000: Function 'metaphon' already exists
 | |
| connection slave;
 | |
| SELECT metaphon('slave');
 | |
| metaphon('slave')
 | |
| SLF
 | |
| connection master;
 | |
| CREATE FUNCTION IF NOT EXISTS metaphon RETURNS STRING SONAME "UDF_EXAMPLE_LIB";
 | |
| Warnings:
 | |
| Note	1125	Function 'metaphon' already exists
 | |
| DROP FUNCTION IF EXISTS random_function_name;
 | |
| Warnings:
 | |
| Note	1305	FUNCTION test.random_function_name does not exist
 | |
| CREATE FUNCTION IF NOT EXISTS metaphon RETURNS STRING SONAME "UDF_EXAMPLE_LIB";
 | |
| Warnings:
 | |
| Note	1125	Function 'metaphon' already exists
 | |
| CREATE OR REPLACE FUNCTION IF NOT EXISTS metaphon RETURNS STRING SONAME "UDF_EXAMPLE_LIB";
 | |
| ERROR HY000: Incorrect usage of OR REPLACE and IF NOT EXISTS
 | |
| connection slave;
 | |
| SELECT metaphon('slave');
 | |
| metaphon('slave')
 | |
| SLF
 | |
| connection master;
 | |
| DROP FUNCTION metaphon;
 | |
| CREATE OR REPLACE FUNCTION metaphon RETURNS STRING SONAME "UDF_EXAMPLE_LIB";
 | |
| CREATE FUNCTION metaphon RETURNS STRING SONAME "UDF_EXAMPLE_LIB";
 | |
| ERROR HY000: Function 'metaphon' already exists
 | |
| connection slave;
 | |
| SELECT metaphon('slave');
 | |
| metaphon('slave')
 | |
| SLF
 | |
| connection master;
 | |
| DROP FUNCTION metaphon;
 | |
| DROP FUNCTION IF EXISTS metaphon;
 | |
| Warnings:
 | |
| Note	1305	FUNCTION test.metaphon does not exist
 | |
| connection slave;
 | |
| DROP FUNCTION metaphon;
 | |
| ERROR 42000: FUNCTION test.metaphon does not exist
 | |
| DROP FUNCTION IF EXISTS metaphon;
 | |
| Warnings:
 | |
| Note	1305	FUNCTION test.metaphon does not exist
 | |
| include/rpl_end.inc
 | 
