mirror of
https://github.com/MariaDB/server.git
synced 2025-11-16 02:36:13 +01:00
- Defining MariaDB_FUNCTION_PLUGIN - Changing the code in /plugins/type_inet/ and /plugins/type_test/ to use MariaDB_FUNCTION_PLUGIN instead of MariaDB_FUNCTION_COLLECTION_PLUGIN. - Changing maturity for the INET6 data type plugin from experimental to alpha.
23 lines
387 B
Text
23 lines
387 B
Text
#--echo #
|
|
#--echo #
|
|
#--echo #
|
|
|
|
--vertical_results
|
|
SELECT
|
|
PLUGIN_NAME,
|
|
PLUGIN_VERSION,
|
|
PLUGIN_STATUS,
|
|
PLUGIN_TYPE,
|
|
PLUGIN_AUTHOR,
|
|
PLUGIN_DESCRIPTION,
|
|
PLUGIN_LICENSE,
|
|
PLUGIN_MATURITY,
|
|
PLUGIN_AUTH_VERSION
|
|
FROM INFORMATION_SCHEMA.PLUGINS
|
|
WHERE PLUGIN_TYPE='FUNCTION'
|
|
AND PLUGIN_NAME='sysconst_test';
|
|
--horizontal_results
|
|
|
|
|
|
SELECT sysconst_test();
|
|
SELECT sysconst_test();
|