Emmanuel BENOîT
9b346a80c2
* Added dump view for empire resources * Added empire resource information storage class and associated row mapper * Integrated empire resource information into the summary generator
11 lines
No EOL
259 B
PL/PgSQL
11 lines
No EOL
259 B
PL/PgSQL
/*
|
|
* Test privileges on bugs.dump_emp_resources_view
|
|
*/
|
|
BEGIN;
|
|
SELECT plan( 1 );
|
|
|
|
SELECT diag_test_name( 'bugs.dump_emp_resources_view - Privileges' );
|
|
SELECT lives_ok( 'SELECT * FROM bugs.dump_emp_resources_view' );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |