mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
fd262dac8c
real small function to revoke update on a column. The function > > doesn't do anything > > fancy like checking user ids. > > > > I copied most of it from the refint.c in the contrib directory. > > > > Should I post this somewhere? It really isn't very big. > > Here it is... -- | Email - rick@rpacorp.com Rick Poleshuck | Voice - (908) 653-1070 Fax - (908) 653-0265 | Mail - RPA Corporation | - 308 Elizabeth Avenue, Cranford, New Jersey 07016
8 lines
109 B
Plaintext
8 lines
109 B
Plaintext
DROP FUNCTION noup ();
|
|
|
|
CREATE FUNCTION noup ()
|
|
RETURNS opaque
|
|
AS '_OBJWD_/noup_DLSUFFIX_'
|
|
LANGUAGE 'c'
|
|
;
|