Emmanuel BENOîT
b15acadc1b
* Added new research-related constants * Added set of views and functions to list empires' technologies. This includes a view which determines the visibility of an in-progress research's details, and a main list view.
15 lines
No EOL
313 B
PL/PgSQL
15 lines
No EOL
313 B
PL/PgSQL
/*
|
|
* Test privileges on emp.technology_visibility_view
|
|
*/
|
|
BEGIN;
|
|
\i utils/strings.sql
|
|
|
|
SELECT plan( 1 );
|
|
|
|
SELECT diag_test_name( 'emp.technology_visibility_view - No SELECT privilege' );
|
|
SELECT throws_ok( $$
|
|
SELECT * FROM emp.technology_visibility_view;
|
|
$$ , 42501 );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |