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/010-uoc-technology.sql
Emmanuel BENOîT af57e7d3b5 Technology definition functions
* Added stored procedures which manipulate technology definitions
themselves (defs.uoc_technology) or their dependencies (defs.techdep_add
and defs.techdep_remove)
2012-02-27 14:14:00 +01:00

13 lines
No EOL
274 B
PL/PgSQL

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