diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-18 22:40:40 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-09-18 22:40:40 +0000 |
commit | 9b4cda0df674e0c7b70aa61d768471a97205113f (patch) | |
tree | 6c92849a8922458b69723b2640d85ec916aa48b1 /src/include/pg_config_manual.h | |
parent | f7f308d6a6c8cfffa61ab79be9c338726fb2cfb6 (diff) | |
download | postgresql-9b4cda0df674e0c7b70aa61d768471a97205113f.tar.gz postgresql-9b4cda0df674e0c7b70aa61d768471a97205113f.zip |
Add built-in userlock manipulation functions to replace the former
contrib functionality. Along the way, remove the USER_LOCKS configuration
symbol, since it no longer makes any sense to try to compile that out.
No user documentation yet ... mmoncure has promised to write some.
Thanks to Abhijit Menon-Sen for creating a first draft to work from.
Diffstat (limited to 'src/include/pg_config_manual.h')
-rw-r--r-- | src/include/pg_config_manual.h | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/include/pg_config_manual.h b/src/include/pg_config_manual.h index 67bcdd730eb..d41d5619966 100644 --- a/src/include/pg_config_manual.h +++ b/src/include/pg_config_manual.h @@ -6,7 +6,7 @@ * for developers. If you edit any of these, be sure to do a *full* * rebuild (and an initdb if noted). * - * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.22 2006/06/06 17:59:58 tgl Exp $ + * $PostgreSQL: pgsql/src/include/pg_config_manual.h,v 1.23 2006/09/18 22:40:40 tgl Exp $ *------------------------------------------------------------------------ */ @@ -101,16 +101,6 @@ /* #define TCL_ARRAYS */ /* - * User locks are handled totally on the application side as long term - * cooperative locks which extend beyond the normal transaction - * boundaries. Their purpose is to indicate to an application that - * someone is `working' on an item. Define this flag to enable user - * locks. You will need the loadable module user-locks.c to use this - * feature. - */ -#define USER_LOCKS - -/* * Define this if you want psql to _always_ ask for a username and a * password for password authentication. */ |