mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
10bec20ee3
Fixed udf_example, so tests now can also run udf on win. sql/udf_example.def: BitKeeper file /home/georg/work/mysql/prod/mysql-5.1-win/sql/udf_example.def include/config-win.h: removed USE_32_BIT_TIME include/my_time.h: Fixed size of my_time for Win64 (should be 64bit) mysql-test/mysql-test-run.pl: Added windows paths for udf_example sql/CMakeLists.txt: Added udf_example.dll sql/udf_example.c: Windows doesn't know about socket.h and friends. Use winsock.h instead
24 lines
385 B
Modula-2
24 lines
385 B
Modula-2
LIBRARY udf_example
|
|
DESCRIPTION 'MySQL Sample for UDF'
|
|
VERSION 1.0
|
|
EXPORTS
|
|
lookup
|
|
lookup_init
|
|
reverse_lookup
|
|
reverse_lookup_init
|
|
metaphon_init
|
|
metaphon_deinit
|
|
metaphon
|
|
myfunc_double_init
|
|
myfunc_double
|
|
myfunc_int_init
|
|
myfunc_int
|
|
sequence_init
|
|
sequence_deinit
|
|
sequence
|
|
avgcost_init
|
|
avgcost_deinit
|
|
avgcost_reset
|
|
avgcost_add
|
|
avgcost_clear
|
|
avgcost
|