From baef78d96b799b6264a54f8cfce4fda2b2da9701 Mon Sep 17 00:00:00 2001 From: PostgreSQL Daemon Date: Thu, 15 Jan 1998 19:46:37 +0000 Subject: 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. --- src/include/access/skey.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/include/access/skey.h') diff --git a/src/include/access/skey.h b/src/include/access/skey.h index f40efc1e5b..4cbf18197f 100644 --- a/src/include/access/skey.h +++ b/src/include/access/skey.h @@ -6,7 +6,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: skey.h,v 1.6 1997/09/08 21:51:01 momjian Exp $ + * $Id: skey.h,v 1.7 1998/01/15 19:46:18 pgsql Exp $ * * * Note: @@ -17,13 +17,14 @@ #define SKEY_H #include +#include typedef struct ScanKeyData { bits16 sk_flags; /* flags */ AttrNumber sk_attno; /* domain number */ RegProcedure sk_procedure; /* procedure OID */ - func_ptr sk_func; + FmgrInfo sk_func; int32 sk_nargs; Datum sk_argument; /* data to compare */ } ScanKeyData; -- cgit v1.2.1