mirror of
https://github.com/postgres/postgres.git
synced 2026-04-29 18:32:53 -04:00
- code compile tested, but due to a yet unresolved problem with
parse.h's creation, compile not completed...
21 lines
489 B
C
21 lines
489 B
C
/*-------------------------------------------------------------------------
|
|
*
|
|
* locks.h--
|
|
*
|
|
*
|
|
*
|
|
* Copyright (c) 1994, Regents of the University of California
|
|
*
|
|
* $Id: locks.h,v 1.1 1996/08/28 07:24:04 scrappy Exp $
|
|
*
|
|
*-------------------------------------------------------------------------
|
|
*/
|
|
#ifndef LOCKS_H
|
|
#define LOCKS_H
|
|
|
|
#include "rewrite/prs2lock.h"
|
|
|
|
extern List *matchLocks(CmdType event, RuleLock *rulelocks, int varno,
|
|
Query *parsetree);
|
|
|
|
#endif /* LOCKS_H */
|