summaryrefslogtreecommitdiff
path: root/contrib/fulltextindex/fti.c
diff options
context:
space:
mode:
authorVadim B. Mikheev1998-11-27 20:09:56 +0000
committerVadim B. Mikheev1998-11-27 20:09:56 +0000
commit971175fa0c63befed59b4809ce8bf0a40a8a00cc (patch)
treeb0791e8d21c7bf632f77cfa400a7a6eec096760d /contrib/fulltextindex/fti.c
parent6beba218d7f6f764e946751df6dc0d0180da05fa (diff)
New HeapTuple structure/interface.
Diffstat (limited to 'contrib/fulltextindex/fti.c')
-rw-r--r--contrib/fulltextindex/fti.c2
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");