diff options
| author | PostgreSQL Daemon <webmaster@postgresql.org> | 1998-01-15 19:46:37 +0000 |
|---|---|---|
| committer | PostgreSQL Daemon <webmaster@postgresql.org> | 1998-01-15 19:46:37 +0000 |
| commit | baef78d96b799b6264a54f8cfce4fda2b2da9701 (patch) | |
| tree | a842ceff78d7eba3de43ba866976d828cf6d2d34 /src/include/commands/vacuum.h | |
| parent | 763ff8aef848d71da079049890786edffc3302d6 (diff) | |
| download | postgresql-baef78d96b799b6264a54f8cfce4fda2b2da9701.tar.gz | |
Thank god for searchable mail archives.
Patch by: wieck@sapserv.debis.de (Jan Wieck)
One of the design rules of PostgreSQL is extensibility. And
to follow this rule means (at least for me) that there should
not only be a builtin PL. Instead I would prefer a defined
interface for PL implemetations.
Diffstat (limited to 'src/include/commands/vacuum.h')
| -rw-r--r-- | src/include/commands/vacuum.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/commands/vacuum.h b/src/include/commands/vacuum.h index 2f72f767e5..250e8952dd 100644 --- a/src/include/commands/vacuum.h +++ b/src/include/commands/vacuum.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: vacuum.h,v 1.11 1997/11/26 01:26:08 momjian Exp $ + * $Id: vacuum.h,v 1.12 1998/01/15 19:46:24 pgsql Exp $ * *------------------------------------------------------------------------- */ @@ -78,7 +78,7 @@ typedef struct nonnull_cnt; int32 max_cnt, min_cnt; - func_ptr f_cmpeq, + FmgrInfo f_cmpeq, f_cmplt, f_cmpgt; regproc outfunc; |
