lockcmds.h 559 B

123456789101112131415161718192021222324
  1. /*-------------------------------------------------------------------------
  2. *
  3. * lockcmds.h
  4. * prototypes for lockcmds.c.
  5. *
  6. *
  7. * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
  8. * Portions Copyright (c) 1994, Regents of the University of California
  9. *
  10. * src/include/commands/lockcmds.h
  11. *
  12. *-------------------------------------------------------------------------
  13. */
  14. #ifndef LOCKCMDS_H
  15. #define LOCKCMDS_H
  16. #include "nodes/parsenodes.h"
  17. /*
  18. * LOCK
  19. */
  20. extern void LockTableCommand(LockStmt *lockstmt);
  21. #endif /* LOCKCMDS_H */