diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-03 03:30:54 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2006-03-03 03:30:54 +0000 |
commit | 984a6ced3ece409e97b74ce163297b8193eeeb6c (patch) | |
tree | c6c3ad8b3166d3bc492d7a22b89a1ba13d51d1a1 /src/include/commands/tablecmds.h | |
parent | 2a0ba3f8ddd0d58288fe1d146af4ca57fd82dc45 (diff) |
Add CASCADE option to TRUNCATE. Joachim Wieland
Diffstat (limited to 'src/include/commands/tablecmds.h')
-rw-r--r-- | src/include/commands/tablecmds.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/tablecmds.h b/src/include/commands/tablecmds.h index b6e30f6f699..1e367210d70 100644 --- a/src/include/commands/tablecmds.h +++ b/src/include/commands/tablecmds.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.25 2005/11/21 12:49:32 alvherre Exp $ + * $PostgreSQL: pgsql/src/include/commands/tablecmds.h,v 1.26 2006/03/03 03:30:53 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -36,7 +36,7 @@ extern void AlterRelationNamespaceInternal(Relation classRel, Oid relOid, Oid oldNspOid, Oid newNspOid, bool hasDependEntry); -extern void ExecuteTruncate(List *relations); +extern void ExecuteTruncate(TruncateStmt *stmt); extern void renameatt(Oid myrelid, const char *oldattname, |