Adjust some comments about structure properties in pg_stat.h
[pgsql.git] / src / pl / plperl / expected / plperl_lc.out
blob4f8c08f1c94f603a7339db747542bd1d1e4d272f
1 --
2 -- Make sure strings are validated
3 -- Should fail for all encodings, as nul bytes are never permitted.
4 --
5 CREATE OR REPLACE FUNCTION perl_zerob() RETURNS TEXT AS $$
6   return "abcd\0efg";
7 $$ LANGUAGE plperl;
8 SELECT perl_zerob();
9 ERROR:  invalid byte sequence for encoding "UTF8": 0x00
10 CONTEXT:  PL/Perl function "perl_zerob"