@@ -120,7 +120,7 @@ RETURNS internal
120120AS 'MODULE_PATHNAME'
121121LANGUAGE 'C';
122122
123- CREATE FUNCTION gint2_union(bytea , internal)
123+ CREATE FUNCTION gint2_union(internal , internal)
124124RETURNS int4
125125AS 'MODULE_PATHNAME'
126126LANGUAGE 'C';
140140 OPERATOR 4 >= ,
141141 OPERATOR 5 > ,
142142 FUNCTION 1 gint2_consistent (internal, int2, int2),
143- FUNCTION 2 gint2_union (bytea , internal),
143+ FUNCTION 2 gint2_union (internal , internal),
144144 FUNCTION 3 gint2_compress (internal),
145145 FUNCTION 4 btree_decompress (internal),
146146 FUNCTION 5 gint2_penalty (internal, internal, internal),
@@ -176,7 +176,7 @@ RETURNS internal
176176AS 'MODULE_PATHNAME'
177177LANGUAGE 'C';
178178
179- CREATE FUNCTION gint4_union(bytea , internal)
179+ CREATE FUNCTION gint4_union(internal , internal)
180180RETURNS int4
181181AS 'MODULE_PATHNAME'
182182LANGUAGE 'C';
196196 OPERATOR 4 >= ,
197197 OPERATOR 5 > ,
198198 FUNCTION 1 gint4_consistent (internal, int4, int2),
199- FUNCTION 2 gint4_union (bytea , internal),
199+ FUNCTION 2 gint4_union (internal , internal),
200200 FUNCTION 3 gint4_compress (internal),
201201 FUNCTION 4 btree_decompress (internal),
202202 FUNCTION 5 gint4_penalty (internal, internal, internal),
@@ -232,7 +232,7 @@ RETURNS internal
232232AS 'MODULE_PATHNAME'
233233LANGUAGE 'C';
234234
235- CREATE FUNCTION gint8_union(bytea , internal)
235+ CREATE FUNCTION gint8_union(internal , internal)
236236RETURNS int8key
237237AS 'MODULE_PATHNAME'
238238LANGUAGE 'C';
252252 OPERATOR 4 >= ,
253253 OPERATOR 5 > ,
254254 FUNCTION 1 gint8_consistent (internal, int8, int2),
255- FUNCTION 2 gint8_union (bytea , internal),
255+ FUNCTION 2 gint8_union (internal , internal),
256256 FUNCTION 3 gint8_compress (internal),
257257 FUNCTION 4 btree_decompress (internal),
258258 FUNCTION 5 gint8_penalty (internal, internal, internal),
@@ -289,7 +289,7 @@ RETURNS internal
289289AS 'MODULE_PATHNAME'
290290LANGUAGE 'C';
291291
292- CREATE FUNCTION gfloat4_union(bytea , internal)
292+ CREATE FUNCTION gfloat4_union(internal , internal)
293293RETURNS int4
294294AS 'MODULE_PATHNAME'
295295LANGUAGE 'C';
309309 OPERATOR 4 >= ,
310310 OPERATOR 5 > ,
311311 FUNCTION 1 gfloat4_consistent (internal, float4, int2),
312- FUNCTION 2 gfloat4_union (bytea , internal),
312+ FUNCTION 2 gfloat4_union (internal , internal),
313313 FUNCTION 3 gfloat4_compress (internal),
314314 FUNCTION 4 btree_decompress (internal),
315315 FUNCTION 5 gfloat4_penalty (internal, internal, internal),
@@ -348,7 +348,7 @@ RETURNS internal
348348AS 'MODULE_PATHNAME'
349349LANGUAGE 'C';
350350
351- CREATE FUNCTION gfloat8_union(bytea , internal)
351+ CREATE FUNCTION gfloat8_union(internal , internal)
352352RETURNS int4
353353AS 'MODULE_PATHNAME'
354354LANGUAGE 'C';
368368 OPERATOR 4 >= ,
369369 OPERATOR 5 > ,
370370 FUNCTION 1 gfloat8_consistent (internal, float8, int2),
371- FUNCTION 2 gfloat8_union (bytea , internal),
371+ FUNCTION 2 gfloat8_union (internal , internal),
372372 FUNCTION 3 gfloat8_compress (internal),
373373 FUNCTION 4 btree_decompress (internal),
374374 FUNCTION 5 gfloat8_penalty (internal, internal, internal),
@@ -422,7 +422,7 @@ RETURNS internal
422422AS 'MODULE_PATHNAME'
423423LANGUAGE 'C';
424424
425- CREATE FUNCTION gts_union(bytea , internal)
425+ CREATE FUNCTION gts_union(internal , internal)
426426RETURNS int4
427427AS 'MODULE_PATHNAME'
428428LANGUAGE 'C';
442442 OPERATOR 4 >= ,
443443 OPERATOR 5 > ,
444444 FUNCTION 1 gts_consistent (internal, timestamp, int2),
445- FUNCTION 2 gts_union (bytea , internal),
445+ FUNCTION 2 gts_union (internal , internal),
446446 FUNCTION 3 gts_compress (internal),
447447 FUNCTION 4 btree_decompress (internal),
448448 FUNCTION 5 gts_penalty (internal, internal, internal),
0 commit comments