Emmanuel BENOîT
a14601df37
* Added game.research.weightBase constant * Added view which computes the weights for each in-progress research * Added view which computes total weights per empire
15 lines
No EOL
283 B
PL/PgSQL
15 lines
No EOL
283 B
PL/PgSQL
/*
|
|
* Test privileges on emp.technologies_v2_view
|
|
*/
|
|
BEGIN;
|
|
\i utils/strings.sql
|
|
|
|
SELECT plan( 1 );
|
|
|
|
SELECT diag_test_name( 'emp.technologies_v2_view - SELECT privilege' );
|
|
SELECT lives_ok( $$
|
|
SELECT * FROM emp.technologies_v2_view;
|
|
$$ );
|
|
|
|
SELECT * FROM finish( );
|
|
ROLLBACK; |