aboutsummaryrefslogtreecommitdiff
path: root/test/unit/test_c_api.cpp
diff options
context:
space:
mode:
authorEven Rouault <even.rouault@spatialys.com>2021-09-17 19:19:37 +0200
committerEven Rouault <even.rouault@spatialys.com>2021-09-17 19:20:54 +0200
commit2db54cc09a6587eba855aebac05baa1ae5130c2c (patch)
treee00063b02d5db66097b37444849694871dab1d68 /test/unit/test_c_api.cpp
parenta3e412995df7dae2c8ef13d2682e03b770edcb75 (diff)
downloadPROJ-2db54cc09a6587eba855aebac05baa1ae5130c2c.tar.gz
PROJ-2db54cc09a6587eba855aebac05baa1ae5130c2c.zip
Database: add a 'anchor' field to geodetic_datum and vertical_datum tables
Update database layout version number to 1.2 consequently This new capability will be used by IAU planetary CRS (refs #2601)
Diffstat (limited to 'test/unit/test_c_api.cpp')
-rw-r--r--test/unit/test_c_api.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit/test_c_api.cpp b/test/unit/test_c_api.cpp
index 4898345c..05e99237 100644
--- a/test/unit/test_c_api.cpp
+++ b/test/unit/test_c_api.cpp
@@ -5579,7 +5579,7 @@ TEST_F(CApi, proj_get_insert_statements) {
EXPECT_EQ(std::string(list[0]),
"INSERT INTO geodetic_datum VALUES('HOBU',"
"'GEODETIC_DATUM_XXXX','GDA2020','','EPSG','7019',"
- "'EPSG','8901',NULL,NULL,NULL,0);");
+ "'EPSG','8901',NULL,NULL,NULL,NULL,0);");
EXPECT_EQ(sizeOfStringList(list), 4);
proj_string_list_destroy(list);
}
@@ -5627,7 +5627,7 @@ TEST_F(CApi, proj_get_insert_statements) {
EXPECT_EQ(std::string(list[0]),
"INSERT INTO geodetic_datum VALUES('HOBU',"
"'GEODETIC_DATUM_XXXX','GDA2020','','EPSG','7019',"
- "'EPSG','8901',NULL,NULL,NULL,0);");
+ "'EPSG','8901',NULL,NULL,NULL,NULL,0);");
proj_string_list_destroy(list);
}