From 74e946e8d09161d9fb0c2bfd32ff576aa9b9bde8 Mon Sep 17 00:00:00 2001 From: Marc Cenac Date: Mon, 21 Mar 2016 16:54:35 -0500 Subject: [PATCH] updating the column names to be in sync with spec * see the related issue [here](https://github.com/opengeospatial/geopackage/issues/130) for more info --- gpkg/gpkg_db.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpkg/gpkg_db.c b/gpkg/gpkg_db.c index aca14ae..438cd88 100644 --- a/gpkg/gpkg_db.c +++ b/gpkg/gpkg_db.c @@ -154,9 +154,9 @@ static column_info_t gpkg_data_column_constraints_columns[] = { {"constraint_type", "TEXT", N, SQL_NOT_NULL | SQL_UNIQUE(1), NULL}, {"value", "TEXT", N, SQL_UNIQUE(1), NULL}, {"min", "NUMERIC", N, 0, NULL}, - {"minIsInclusive", "BOOLEAN", N, 0, NULL}, + {"min_is_inclusive", "BOOLEAN", N, 0, NULL}, {"max", "NUMERIC", N, 0, NULL}, - {"maxIsInclusive", "BOOLEAN", N, 0, NULL}, + {"max_is_inclusive, "BOOLEAN", N, 0, NULL}, {"description", "TEXT", N, 0, NULL}, {NULL, NULL, N, 0, NULL} };