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/200-bugs/010-dump-planet-resources-view.sql
Emmanuel BENOîT ce6d86d344 Planet resources and resource providers in XML dumps
* Dump version bumped up to 2

* Added SQL view that shows resource delta and provider information for
all empire-owned planets

* Added new storage classes for resource providers and resource deltas

* Added row mapper which extracts all planet resources information
(providers and deltas)

* Modified dump generator to include planet resources / resource
providers
2012-01-18 09:28:35 +01:00

11 lines
No EOL
268 B
PL/PgSQL

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