diff options
| author | PROJ-BOT <59655370+PROJ-BOT@users.noreply.github.com> | 2020-08-07 18:48:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-07 18:48:25 +0200 |
| commit | dd91c93ca44cbe3cf4f6f7c94a8f225aefa4b408 (patch) | |
| tree | 85f8e2e3204c5f5e858f0c4f54b01cb02eaae1a5 /src/iso19111/factory.cpp | |
| parent | 3b4862042db62381adc505ee7e3e0bbfdcd33663 (diff) | |
| download | PROJ-dd91c93ca44cbe3cf4f6f7c94a8f225aefa4b408.tar.gz PROJ-dd91c93ca44cbe3cf4f6f7c94a8f225aefa4b408.zip | |
ProjectedCRS::identify(): fix to be able to identify EPSG:2154 as a candidate for 'RGF93_Lambert_93' (contributes to fixes https://github.com/qgis/QGIS/issues/32255) (#2316)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'src/iso19111/factory.cpp')
| -rw-r--r-- | src/iso19111/factory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iso19111/factory.cpp b/src/iso19111/factory.cpp index de8e1362..4894085e 100644 --- a/src/iso19111/factory.cpp +++ b/src/iso19111/factory.cpp @@ -5642,7 +5642,7 @@ AuthorityFactory::createObjectsFromNameEx( sql += "AND deprecated = 1 "; } if (!approximateMatch) { - sql += "AND name LIKE ? "; + sql += "AND name = ? "; params.push_back(searchedNameWithoutDeprecated); } if (d->hasAuthorityRestriction()) { @@ -5672,7 +5672,7 @@ AuthorityFactory::createObjectsFromNameEx( sql += "AND ov.deprecated = 1 "; } if (!approximateMatch) { - sql += "AND a.alt_name LIKE ? "; + sql += "AND a.alt_name = ? "; params.push_back(searchedNameWithoutDeprecated); } if (d->hasAuthorityRestriction()) { |
