diff options
| author | Neil Conway | 2004-05-30 23:40:41 +0000 |
|---|---|---|
| committer | Neil Conway | 2004-05-30 23:40:41 +0000 |
| commit | 72b6ad6313387110cb36b69a3732cd0936c3eba4 (patch) | |
| tree | e43da77aaeb3a9d7f4997ddb2b91ae88001ea462 /contrib/tsearch2 | |
| parent | ec0b1f271639ff0fafd1310de3c47cbb214c6294 (diff) | |
Use the new List API function names throughout the backend, and disable the
list compatibility API by default. While doing this, I decided to keep
the llast() macro around and introduce llast_int() and llast_oid() variants.
Diffstat (limited to 'contrib/tsearch2')
| -rw-r--r-- | contrib/tsearch2/tsvector.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/tsearch2/tsvector.c b/contrib/tsearch2/tsvector.c index 827627b068d..494663496ed 100644 --- a/contrib/tsearch2/tsvector.c +++ b/contrib/tsearch2/tsvector.c @@ -779,10 +779,10 @@ findFunc(char *fname) FuncCandidateList clist, ptr; Oid funcid = InvalidOid; - List *names = makeList1(makeString(fname)); + List *names = list_make1(makeString(fname)); ptr = clist = FuncnameGetCandidates(names, 1); - freeList(names); + list_free(names); if (!ptr) return funcid; |
