]> git.openstreetmap.org Git - rails.git/blobdiff - db/structure.sql
Remove xid_to_int4 postgres function
[rails.git] / db / structure.sql
index a45bb0a7030d22c5609bf6a9d991dbe8d6d06eba..ccef53e1728aabacc38ec08ed204f115272840e8 100644 (file)
@@ -147,34 +147,6 @@ END;
 $$;
 
 
---
--- Name: xid_to_int4(xid); Type: FUNCTION; Schema: public; Owner: -
---
-
-CREATE FUNCTION public.xid_to_int4(t xid) RETURNS integer
-    LANGUAGE plpgsql IMMUTABLE STRICT
-    AS $$
-DECLARE
-  tl bigint;
-  ti int;
-BEGIN
-  tl := t;
-
-  IF tl >= 2147483648 THEN
-    tl := tl - 4294967296;
-  END IF;
-
-  ti := tl;
-
-  RETURN ti;
-END;
-$$;
-
-
-SET default_tablespace = '';
-
-SET default_table_access_method = heap;
-
 --
 -- Name: acls; Type: TABLE; Schema: public; Owner: -
 --