diff options
author | Bruce Momjian <bruce@momjian.us> | 1998-08-26 05:22:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1998-08-26 05:22:58 +0000 |
commit | 093beb3560e403c0c8bd726d1f1b0b916bbb7a67 (patch) | |
tree | 042e0408e3ba92e062e1f2d5c7aaedb184c58f22 /src/include/nodes/parsenodes.h | |
parent | 651e31bb8000932fcec36117e13416d3991c26f0 (diff) |
Make attalign match type alignment.
Diffstat (limited to 'src/include/nodes/parsenodes.h')
-rw-r--r-- | src/include/nodes/parsenodes.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index eb7bb13d105..3555ac49beb 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: parsenodes.h,v 1.57 1998/08/25 21:37:04 scrappy Exp $ + * $Id: parsenodes.h,v 1.58 1998/08/26 05:22:55 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -832,7 +832,7 @@ typedef struct IndexElem char *name; /* name of index */ List *args; /* if not NULL, function index */ char *class; - TypeName *tname; /* type of index's keys (optional) */ + TypeName *typename; /* type of index's keys (optional) */ } IndexElem; /* |