diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-28 17:56:29 +0000 |
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-05-28 17:56:29 +0000 |
| commit | 0a7fb4e9184539afcb6fed0f1d2bc0abddc2b0a6 (patch) | |
| tree | affcce1c5b6367468fb6dcfd2790585f2e967629 /src/include/access/valid.h | |
| parent | 5005bb060b3f3a82cd1bd662c7f8946c9be59db5 (diff) | |
| download | postgresql-0a7fb4e9184539afcb6fed0f1d2bc0abddc2b0a6.tar.gz | |
First round of changes for new fmgr interface. fmgr itself and the
key call sites are changed, but most called functions are still oldstyle.
An exception is that the PL managers are updated (so, for example, NULL
handling now behaves as expected in plperl and plpgsql functions).
NOTE initdb is forced due to added column in pg_proc.
Diffstat (limited to 'src/include/access/valid.h')
| -rw-r--r-- | src/include/access/valid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/access/valid.h b/src/include/access/valid.h index 0fa7b0840b..e710ff415a 100644 --- a/src/include/access/valid.h +++ b/src/include/access/valid.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: valid.h,v 1.20 2000/01/26 05:57:51 momjian Exp $ + * $Id: valid.h,v 1.21 2000/05/28 17:56:14 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -58,7 +58,7 @@ do \ break; \ } \ \ - if (__cur_keys->sk_func.fn_addr == (func_ptr) oideq) /* optimization */ \ + if (__cur_keys->sk_func.fn_addr == (PGFunction) oideq) /* optimization */ \ __test = (__cur_keys->sk_argument == __atp); \ else if (__cur_keys->sk_flags & SK_COMMUTE) \ __test = (long) FMGR_PTR2(&__cur_keys->sk_func, \ |
