postgis/regress/dumper/realtable-pre.sql
Regina Obe 3fe99f5595 Escape double quotes issue in pgsql2shp
Include test for boolean and quotes
References #3701 for PostGIS 2.4 (trunk)

git-svn-id: http://svn.osgeo.org/postgis/trunk@15441 b70326c6-7e19-0410-871a-916f4a2858ee
2017-06-23 05:13:22 +00:00

4 lines
210 B
SQL

insert into spatial_ref_sys(srid,srtext) values (1,'fake["srs"],text');
create table c (i int, g geometry, b boolean, """qColumn" varchar(20));
insert into c values (1,'SRID=1;POINT(0 0)', true, 'quote test');