dbcrossbarlib 0.2.5

Library for copying data between databases (pre-release)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- This is an example table.
CREATE TABLE example (
    a text,
    b integer,
    c uuid NOT NULL,
    d date,
    e double precision,
    f text[],
    g integer[],
    h geometry(Geometry,4326),
    -- Just to be annoying:
    i public.geometry(Geometry,3857),
    j smallint,
    k timestamp without time zone
)