Adjust some comments about structure properties in pg_stat.h
[pgsql.git] / src / pl / plperl / expected / plperlu.out
bloba3edb38497198b5b83be2ed3deab557cc08ee4dd
1 -- Use ONLY plperlu tests here. For plperl/plerlu combined tests
2 -- see plperl_plperlu.sql
3 -- This test tests setting on_plperlu_init after loading plperl
4 LOAD 'plperl';
5 -- Test plperl.on_plperlu_init gets run
6 SET plperl.on_plperlu_init = '$_SHARED{init} = 42';
7 DO $$ warn $_SHARED{init} $$ language plperlu;
8 WARNING:  42 at line 1.
9 --
10 -- Test compilation of unicode regex - regardless of locale.
11 -- This code fails in plain plperl in a non-UTF8 database.
13 CREATE OR REPLACE FUNCTION perl_unicode_regex(text) RETURNS INTEGER AS $$
14   return ($_[0] =~ /\x{263A}|happy/i) ? 1 : 0; # unicode smiley
15 $$ LANGUAGE plperlu;