This repository has been archived on 2025-01-04. You can view files and clone it, but cannot push or open issues or pull requests.
lwb6/legacyworlds-server-data/db-structure/tests/user/040-functions/005-logs/010-write-sql-log.sql

13 lines
273 B
MySQL
Raw Normal View History

/*
* Test the sys.write_sql_log( ) function
*/
BEGIN;
SELECT plan( 1 );
SELECT diag_test_name( 'sys.write_sql_log( ) - Privileges' );
SELECT lives_ok(
$$ SELECT sys.write_sql_log( 'test' , 'WARNING'::log_level , 'test' ) $$
);
SELECT * FROM finish( );
ROLLBACK;