Changes between Version 1 and Version 4 of Ticket #4695


Ignore:
Timestamp:
May 25, 2020, 10:11:59 PM (4 years ago)
Author:
robe
Comment:

Sorry about that — I completely forgot to include the actual code :) so focused on creating test data.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #4695 – Description

    v1 v4  
    1515 SELECT row_number()OVER() AS id, 'test' || i::text || j::text AS name, ST_SetSRID(ST_Point(i,j),2227) AS geom
    1616 FROM generate_series(1,10) AS i, generate_series(5,10,2) AS j;
     17
     18
     19SELECT ST_ASGeoJSON(c)
     20FROM test AS c;
    1721 
    1822}}}
     
    3741 FROM generate_series(1,10) AS i, generate_series(5,10,2) AS j;
    3842 
     43SELECT ST_ASGeoJSON(c)
     44FROM test2 AS c;
    3945}}}