Skip to content

Commit c169b0a

Browse files
committed
fixed to work with v10
1 parent 7b69c93 commit c169b0a

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ sudo: required
22
matrix:
33
include:
44
- env: PG_VERSION=9
5-
# - env: PG_VERSION=10
5+
- env: PG_VERSION=10
66
# - env: PG_VERSION=11
77
# - env: PG_VERSION=12
88

uint.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,7 @@ PG_FUNCTION_INFO_V1(uint1le);
217217
PG_FUNCTION_INFO_V1(uint1gt);
218218
PG_FUNCTION_INFO_V1(uint1ge);
219219
PG_FUNCTION_INFO_V1(uint1int4eq);
220+
PG_FUNCTION_INFO_V1(int4uint1eq);
220221

221222
/**
222223
* This function implements the "equal" (=) operator for the uint1 datatype.
@@ -746,6 +747,7 @@ PG_FUNCTION_INFO_V1(uint2le);
746747
PG_FUNCTION_INFO_V1(uint2gt);
747748
PG_FUNCTION_INFO_V1(uint2ge);
748749
PG_FUNCTION_INFO_V1(uint2int4eq);
750+
PG_FUNCTION_INFO_V1(int4uint2eq);
749751

750752
/**
751753
* This function implements the "equal" (=) operator for the uint2 datatype.

0 commit comments

Comments
 (0)