~ubuntu-branches/ubuntu/natty/postgresql-8.4/natty-security

« back to all changes in this revision

Viewing changes to src/include/nodes/pg_list.h

Tags: upstream-8.4.0
ImportĀ upstreamĀ versionĀ 8.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
 * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group
31
31
 * Portions Copyright (c) 1994, Regents of the University of California
32
32
 *
33
 
 * $PostgreSQL: pgsql/src/include/nodes/pg_list.h,v 1.60 2009/01/01 17:24:00 momjian Exp $
 
33
 * $PostgreSQL: pgsql/src/include/nodes/pg_list.h,v 1.61 2009/06/11 14:49:11 momjian Exp $
34
34
 *
35
35
 *-------------------------------------------------------------------------
36
36
 */
219
219
extern List *list_union_oid(List *list1, List *list2);
220
220
 
221
221
extern List *list_intersection(List *list1, List *list2);
 
222
 
222
223
/* currently, there's no need for list_intersection_int etc */
223
224
 
224
225
extern List *list_difference(List *list1, List *list2);