diff options
author | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-02-13 23:22:53 +0000 |
commit | 6724a5078748946b8150700125571b6ea62feca8 (patch) | |
tree | a7b3f2cf82f0bdb7cf836d1d4614a0e3b32df954 /src/backend/commands/defind.c | |
parent | 8c3fff7337b6389b00e8dda03a079605ee102f1b (diff) |
Change my-function-name-- to my_function_name, and optimizer renames.
Diffstat (limited to 'src/backend/commands/defind.c')
-rw-r--r-- | src/backend/commands/defind.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/backend/commands/defind.c b/src/backend/commands/defind.c index a5343bf6995..b5c991c9d74 100644 --- a/src/backend/commands/defind.c +++ b/src/backend/commands/defind.c @@ -1,13 +1,13 @@ /*------------------------------------------------------------------------- * - * defind.c-- + * defind.c * POSTGRES define, extend and remove index code. * * Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.33 1999/02/03 21:16:04 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/Attic/defind.c,v 1.34 1999/02/13 23:15:05 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -53,7 +53,7 @@ static void NormIndexAttrs(List *attList, AttrNumber *attNumP, static char *GetDefaultOpClass(Oid atttypid); /* - * DefineIndex -- + * DefineIndex * Creates a new index. * * 'attributeList' is a list of IndexElem specifying either a functional @@ -208,7 +208,7 @@ DefineIndex(char *heapRelationName, /* - * ExtendIndex -- + * ExtendIndex * Extends a partial index. * * Exceptions: @@ -545,7 +545,7 @@ GetDefaultOpClass(Oid atttypid) } /* - * RemoveIndex -- + * RemoveIndex * Deletes an index. * * Exceptions: |