You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
The metadata column is defined as NOT NULL and having a default of ''
However, Table 35 , gpkg_metadata Table Definition SQLdefines the column as not null, but does not explicitly declare the default value of ''
Should the definition be
CREATE TABLE gpkg_metadata (
id INTEGER CONSTRAINT m_pk PRIMARY KEY ASC NOT NULL,
md_scope TEXT NOT NULL DEFAULT 'dataset',
md_standard_uri TEXT NOT NULL,
mime_type TEXT NOT NULL DEFAULT 'text/xml',
metadata TEXT NOT NULL DEFAULT '');
The text was updated successfully, but these errors were encountered:
jyutzler
added a commit
to jyutzler/geopackage
that referenced
this issue
Sep 20, 2016
In Table 32 "Metadata Table definition",
The metadata column is defined as NOT NULL and having a default of ''
However, Table 35 , gpkg_metadata Table Definition SQLdefines the column as not null, but does not explicitly declare the default value of ''
Should the definition be
CREATE TABLE gpkg_metadata (
id INTEGER CONSTRAINT m_pk PRIMARY KEY ASC NOT NULL,
md_scope TEXT NOT NULL DEFAULT 'dataset',
md_standard_uri TEXT NOT NULL,
mime_type TEXT NOT NULL DEFAULT 'text/xml',
metadata TEXT NOT NULL DEFAULT '');
The text was updated successfully, but these errors were encountered: