X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/beb0ef6357e426ab08349109d47c3726ed50042e..HEAD:/db/functions/xid_to_int4.c diff --git a/db/functions/xid_to_int4.c b/db/functions/xid_to_int4.c deleted file mode 100644 index d654bf269..000000000 --- a/db/functions/xid_to_int4.c +++ /dev/null @@ -1,17 +0,0 @@ -#include -#include - -int xid_to_int4(TransactionId xid) -{ - return xid; -} - -/* - * To bind this into PGSQL, try something like: - * - * CREATE FUNCTION xid_to_int4(xid) RETURNS int4 - * AS '/path/to/rails-port/db/functions/libpgosm', 'xid_to_int4' - * LANGUAGE C IMMUTABLE STRICT; - * - * (without all the *s) - */