Re: [gdal-dev] Non-standard characters in GeoPackage table names

2015-08-03 Thread Jukka Rahkonen
Even Rouault spatialys.com> writes: > > Third and and perhaps best possibility might be to edit the "Annex A > > Conformance / Abstract Test Suite (Normative)" part of the GeoPackage > > standard to use quoted identifiers everywhere. Now the first test in the > > test suite that fails with "test

Re: [gdal-dev] Non-standard characters in GeoPackage table names

2015-08-02 Thread Even Rouault
On Sunday 02 August 2015 11:52:53 Jukka Rahkonen wrote: > Even Rouault spatialys.com> writes: > > On Saturday 01 August 2015 13:35:30 Jukka Rahkonen wrote: > > > Hi, > > > > > > Have a look at this QGIS issue https://hub.qgis.org/issues/13140. > > > > Jukka, > > > > I guess this report must be

Re: [gdal-dev] Non-standard characters in GeoPackage table names

2015-08-02 Thread Jukka Rahkonen
Even Rouault spatialys.com> writes: > > On Saturday 01 August 2015 13:35:30 Jukka Rahkonen wrote: > > Hi, > > > > Have a look at this QGIS issue https://hub.qgis.org/issues/13140. > > Jukka, > > I guess this report must be a QGIS running against GDAL 1.11. There has been a > bug fix in GDAL

Re: [gdal-dev] Non-standard characters in GeoPackage table names

2015-08-01 Thread Even Rouault
On Saturday 01 August 2015 13:35:30 Jukka Rahkonen wrote: > Hi, > > Have a look at this QGIS issue https://hub.qgis.org/issues/13140. Jukka, I guess this report must be a QGIS running against GDAL 1.11. There has been a bug fix in GDAL 2.0 to always quote identifiers ( https://trac.osgeo.org/g

[gdal-dev] Non-standard characters in GeoPackage table names

2015-08-01 Thread Jukka Rahkonen
Hi, Have a look at this QGIS issue https://hub.qgis.org/issues/13140. Problem it that QGIS can't create tables with names like "test-table" into GeoPackage. I think that the reason is that SQLite requires double quotes around such name. This command works: create table "test-t" (id, value); whi