Changes between Initial Version and Version 1 of Ticket #3766


Ignore:
Timestamp:
May 27, 2017, 8:52:54 AM (7 years ago)
Author:
robe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3766 – Description

    initial v1  
    77
    88{{{
    9 CREATE TABLE logs_geom_geog_parent_part (
    10 log_id int GENERATED BY DEFAULT AS IDENTITY,
    11 log_ts timestamp with time zone NOT NULL DEFAULT current_timestamp, geom geometry(point), geog geography(point)
    12 ) PARTITION BY RANGE (log_ts);
     9CREATE TABLE pgis_parent_part (
     10id int GENERATED BY DEFAULT AS IDENTITY,
     11 geom geometry(point), geog geography(point), rast raster
     12) PARTITION BY RANGE (id);
    1313
    1414