Emmanuel BENOîT
d38576a5cf
* Modified mining settings stored procedures to use text identifiers instead of numeric identifiers * Added DAO for mining settings and controller for resource operations * Added UpdateEmpireMiningSettingsCommand and associated command delegate. The command always returns NullResponse. * Overview page templates split into multiple files for clarity, added priority update form to the empire economy view and associated web server handler
14 lines
No EOL
287 B
PL/PgSQL
14 lines
No EOL
287 B
PL/PgSQL
/*
|
|
* Test privileges on emp.mset_update_set()
|
|
*/
|
|
BEGIN;
|
|
SELECT emp.mset_update_start( 1 );
|
|
SELECT plan( 1 );
|
|
|
|
SELECT diag_test_name( 'emp.mset_update_set() - Privileges' );
|
|
SELECT lives_ok( $$
|
|
SELECT emp.mset_update_set( 'a' , -1 )
|
|
$$ );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |