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/045-empire-research/020-technology-make-identifier.sql
Emmanuel BENOîT 071257786c Renamed technology tables and views
* Removed the _v2 suffix from some tables and views.
2012-04-09 15:01:04 +02:00

14 lines
298 B
PL/PgSQL

/*
* Test privileges on emp.technology_make_identifier()
*/
BEGIN;
SELECT plan( 1 );
SELECT diag_test_name( 'emp.technology_make_identifier() - EXECUTE privilege' );
SELECT lives_ok( $$
SELECT emp.technology_make_identifier( 1 , '' , FALSE );
$$ );
SELECT * FROM finish( );
ROLLBACK;