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/030-tech/020-techdep-add.sql

13 lines
247 B
MySQL
Raw Normal View History

/*
* Test privileges on defs.techdep_add()
*/
BEGIN;
SELECT plan( 1 );
SELECT diag_test_name( 'defs.techdep_add() - EXECUTE privilege' );
SELECT lives_ok( $$
SELECT defs.techdep_add( '' , '' );
$$ );
SELECT * FROM finish( );
ROLLBACK;