1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-12 15:23:02 +03:00
Files
config
contrib
adminpack
auto_explain
btree_gin
btree_gist
chkpass
citext
cube
dblink
dict_int
dict_xsyn
earthdistance
fuzzystrmatch
hstore
intagg
intarray
isn
lo
ltree
oid2name
pageinspect
pg_buffercache
pg_freespacemap
pg_standby
pg_stat_statements
pg_trgm
pgbench
pgcrypto
pgrowlocks
pgstattuple
seg
spi
Makefile
autoinc.c
autoinc.example
autoinc.sql.in
insert_username.c
insert_username.example
insert_username.sql.in
moddatetime.c
moddatetime.example
moddatetime.sql.in
refint.c
refint.example
refint.sql.in
timetravel.c
timetravel.example
timetravel.sql.in
sslinfo
start-scripts
tablefunc
test_parser
tsearch2
uuid-ossp
vacuumlo
xml2
Makefile
README
contrib-global.mk
doc
src
COPYRIGHT
GNUmakefile.in
Makefile
README
README.CVS
aclocal.m4
configure
configure.in
postgres/contrib/spi/insert_username.example
Vadim B. Mikheev 629e895101 Trigger function for inserting user names.
Install compiled functions into $(LIBDIR)/contrib.
(Thanks to Brook Milligan <brook@trillium.NMSU.Edu>)
1997-10-17 09:55:34 +00:00

22 lines
562 B
Plaintext

DROP TABLE username_test;
CREATE TABLE username_test (
name text,
username text not null
);
CREATE TRIGGER insert_usernames
BEFORE INSERT OR UPDATE ON username_test
FOR EACH ROW
EXECUTE PROCEDURE insert_username (username);
INSERT INTO username_test VALUES ('nothing');
INSERT INTO username_test VALUES ('null', null);
INSERT INTO username_test VALUES ('empty string', '');
INSERT INTO username_test VALUES ('space', ' ');
INSERT INTO username_test VALUES ('tab', ' ');
INSERT INTO username_test VALUES ('name', 'name');
SELECT * FROM username_test;