Benjamin Loesch

Results 1 comments of Benjamin Loesch

I fixed this by some type casts in follwoing lines in uri.c Line 153 original: `PG_RETURN_INET_P(DirectFunctionCall1(inet_in, CStringGetDatum(tmp)));` Line 153 new: `PG_RETURN_INET_P((inet *) (DirectFunctionCall1(inet_in, CStringGetDatum(tmp))));` Line 165 original: `PG_RETURN_INET_P(DirectFunctionCall1(inet_in, CStringGetDatum(tmp)));` Line...