mirror of
https://github.com/postgres/postgres.git
synced 2025-11-07 19:06:32 +03:00
Implement reindex command
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: parsenodes.h,v 1.99 2000/02/15 20:49:24 tgl Exp $
|
||||
* $Id: parsenodes.h,v 1.100 2000/02/18 09:29:44 inoue Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@@ -722,6 +722,19 @@ typedef struct ConstraintsSetStmt
|
||||
bool deferred;
|
||||
} ConstraintsSetStmt;
|
||||
|
||||
/* ----------------------
|
||||
* REINDEX Statement
|
||||
* ----------------------
|
||||
*/
|
||||
typedef struct ReindexStmt
|
||||
{
|
||||
NodeTag type;
|
||||
int reindexType; /* INDEX|TABLE|DATABASE */
|
||||
const char *name; /* name to reindex */
|
||||
bool force;
|
||||
bool all;
|
||||
} ReindexStmt;
|
||||
|
||||
|
||||
/*****************************************************************************
|
||||
* Optimizable Statements
|
||||
|
||||
Reference in New Issue
Block a user