Changes between Initial Version and Version 1 of Ticket #3952
- Timestamp:
- 12/23/17 15:50:06 (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3952 – Description
initial v1 1 1 From an example query: 2 ``` 3 ebc_13_17=# create table db_2011 as select st_transform(g.geom,3005) as geom, g.dbuid, a.dbpop2011, a.dbtdwell2011, a.dburdwell2011 from db_attr_2011 a join db_gis_2011 g using (dbuid) where g.pruid = '59' ; 2 {{{ 3 ebc_13_17=# create table db_2011 as 4 select st_transform(g.geom,3005) as geom, g.dbuid, a.dbpop2011, a.dbtdwell2011, a.dburdwell2011 5 from db_attr_2011 a join db_gis_2011 g 6 using (dbuid) where g.pruid = '59' ; 7 4 8 ERROR: cannot start commands during a parallel operation 5 9 CONTEXT: SQL statement "SELECT proj4text FROM spatial_ref_sys WHERE srid = 4326 LIMIT 1" 6 ``` 10 }}} 7 11 Looks like the underlying proj lookup using SPI is not happy w/ the parallel executor.