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/145-resource-providers/040-get-planet-resources.sql
Emmanuel BENOîT 597429fadf In-game resources views
* Added session records to carry resource information over to the
clients

* Added SQL support code for the various views

* Added interface and implementation of the resource information access
component

* Hooked resources information queries into both the empire and planet
management component

* Added resources display to planet and overview pages
2012-02-04 10:43:12 +01:00

13 lines
No EOL
256 B
PL/PgSQL

/*
* Test privileges on emp.get_planet_resources()
*/
BEGIN;
SELECT plan( 1 );
SELECT diag_test_name( 'emp.get_planet_resources() - Privileges' );
SELECT lives_ok( $$
SELECT emp.get_planet_resources( 1 )
$$ );
SELECT * FROM finish( );
ROLLBACK;