1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-06 07:49:08 +03:00

Remove all "traces" of trace_userlocks, because userlocks were removed

in PG 8.2.
This commit is contained in:
Bruce Momjian
2011-10-13 19:59:13 -04:00
parent 23610daf8a
commit 0180bd6180
5 changed files with 2 additions and 41 deletions

View File

@@ -213,12 +213,7 @@ static const LockMethodData user_lockmethod = {
AccessExclusiveLock, /* highest valid lock mode number */
true,
LockConflicts,
lock_mode_names,
#ifdef LOCK_DEBUG
&Trace_userlocks
#else
&Dummy_trace
#endif
lock_mode_names
};
/*
@@ -276,7 +271,6 @@ static ResourceOwner awaitedOwner;
int Trace_lock_oidmin = FirstNormalObjectId;
bool Trace_locks = false;
bool Trace_userlocks = false;
int Trace_lock_table = 0;
bool Debug_deadlocks = false;