mirror of
https://github.com/postgres/postgres.git
synced 2025-05-06 19:59:18 +03:00
71 lines
1.7 KiB
C
71 lines
1.7 KiB
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* lockcmds.c
|
|
* Lock command support code
|
|
*
|
|
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
|
|
* Portions Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
*
|
|
* IDENTIFICATION
|
|
* $Header: /cvsroot/pgsql/src/backend/commands/lockcmds.c,v 1.4 2002/09/04 20:31:15 momjian Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#include "postgres.h"
|
|
|
|
#include "access/heapam.h"
|
|
#include "catalog/namespace.h"
|
|
#include "commands/lockcmds.h"
|
|
#include "miscadmin.h"
|
|
#include "utils/acl.h"
|
|
#include "utils/lsyscache.h"
|
|
|
|
|
|
/*
|
|
* LOCK TABLE
|
|
*/
|
|
void
|
|
LockTableCommand(LockStmt *lockstmt)
|
|
{
|
|
List *p;
|
|
|
|
/*
|
|
* Iterate over the list and open, lock, and close the relations one
|
|
* at a time
|
|
*/
|
|
|
|
foreach(p, lockstmt->relations)
|
|
{
|
|
RangeVar *relation = lfirst(p);
|
|
Oid reloid;
|
|
AclResult aclresult;
|
|
Relation rel;
|
|
|
|
/*
|
|
* We don't want to open the relation until we've checked
|
|
* privilege. So, manually get the relation OID.
|
|
*/
|
|
reloid = RangeVarGetRelid(relation, false);
|
|
|
|
if (lockstmt->mode == AccessShareLock)
|
|
aclresult = pg_class_aclcheck(reloid, GetUserId(),
|
|
ACL_SELECT);
|
|
else
|
|
aclresult = pg_class_aclcheck(reloid, GetUserId(),
|
|
ACL_UPDATE | ACL_DELETE);
|
|
|
|
if (aclresult != ACLCHECK_OK)
|
|
aclcheck_error(aclresult, get_rel_name(reloid));
|
|
|
|
rel = relation_open(reloid, lockstmt->mode);
|
|
|
|
/* Currently, we only allow plain tables to be locked */
|
|
if (rel->rd_rel->relkind != RELKIND_RELATION)
|
|
elog(ERROR, "LOCK TABLE: %s is not a table",
|
|
relation->relname);
|
|
|
|
relation_close(rel, NoLock); /* close rel, keep lock */
|
|
}
|
|
}
|