File tree Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Expand file tree Collapse file tree 1 file changed +24
-2
lines changed Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: parsenodes.h,v 1.13 1997/04/05 06:19:22 vadim Exp $
9
+ * $Id: parsenodes.h,v 1.14 1997/04/23 05:58:06 vadim Exp $
10
10
*
11
11
*-------------------------------------------------------------------------
12
12
*/
@@ -410,7 +410,9 @@ typedef struct ClusterStmt {
410
410
typedef struct VacuumStmt {
411
411
NodeTag type ;
412
412
bool verbose ; /* print status info */
413
+ bool analyze ; /* analyze data */
413
414
char * vacrel ; /* table to vacuum */
415
+ List * va_spec ; /* columns to analyse */
414
416
} VacuumStmt ;
415
417
416
418
/* ----------------------
@@ -432,7 +434,27 @@ typedef struct VariableSetStmt {
432
434
NodeTag type ;
433
435
char * name ;
434
436
char * value ;
435
- } VariableSetStmt ;
437
+ } VariableSetStmt ;
438
+
439
+ /* ----------------------
440
+ * Show Statement
441
+ * ----------------------
442
+ */
443
+
444
+ typedef struct VariableShowStmt {
445
+ NodeTag type ;
446
+ char * name ;
447
+ } VariableShowStmt ;
448
+
449
+ /* ----------------------
450
+ * Reset Statement
451
+ * ----------------------
452
+ */
453
+
454
+ typedef struct VariableResetStmt {
455
+ NodeTag type ;
456
+ char * name ;
457
+ } VariableResetStmt ;
436
458
437
459
438
460
/*****************************************************************************
You can’t perform that action at this time.
0 commit comments