mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Remove sql_inheritance GUC.
This backward-compatibility GUC is long overdue for removal. Discussion: http://postgr.es/m/CA+TgmoYe+EG7LdYX6pkcNxr4ygkP4+A=jm9o-CPXyOvRiCNwaQ@mail.gmail.com
This commit is contained in:
@ -54,7 +54,7 @@ LockTableCommand(LockStmt *lockstmt)
|
||||
foreach(p, lockstmt->relations)
|
||||
{
|
||||
RangeVar *rv = (RangeVar *) lfirst(p);
|
||||
bool recurse = interpretInhOption(rv->inhOpt);
|
||||
bool recurse = (rv->inhOpt == INH_YES);
|
||||
Oid reloid;
|
||||
|
||||
reloid = RangeVarGetRelidExtended(rv, lockstmt->mode, false,
|
||||
|
Reference in New Issue
Block a user