diff options
| author | Vadim B. Mikheev | 1998-11-27 20:09:56 +0000 |
|---|---|---|
| committer | Vadim B. Mikheev | 1998-11-27 20:09:56 +0000 |
| commit | 971175fa0c63befed59b4809ce8bf0a40a8a00cc (patch) | |
| tree | b0791e8d21c7bf632f77cfa400a7a6eec096760d /contrib/fulltextindex | |
| parent | 6beba218d7f6f764e946751df6dc0d0180da05fa (diff) | |
New HeapTuple structure/interface.
Diffstat (limited to 'contrib/fulltextindex')
| -rw-r--r-- | contrib/fulltextindex/fti.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/fulltextindex/fti.c b/contrib/fulltextindex/fti.c index 8d14f8f55c9..33a7666fe77 100644 --- a/contrib/fulltextindex/fti.c +++ b/contrib/fulltextindex/fti.c @@ -154,7 +154,7 @@ fti() tupdesc = rel->rd_att; /* what the tuple looks like (?) */ /* get oid of current tuple, needed by all, so place here */ - oid = rettuple->t_oid; + oid = rettuple->t_data->t_oid; if (!OidIsValid(oid)) elog(ERROR,"Full Text Indexing: oid of current tuple is NULL"); |
