mirror of
https://github.com/pgpointcloud/pointcloud.git
synced 2025-12-08 20:36:04 +00:00
Merge pull request #167 from elemoine/strcasecmp
Ignore case where comparing dimension names
This commit is contained in:
commit
39cb636d08
@ -25,7 +25,7 @@ pcpatch_schema_same_dimensions(const PCSCHEMA *s1, const PCSCHEMA *s2)
|
||||
PCDIMENSION *s1dim = s1->dims[i];
|
||||
PCDIMENSION *s2dim = s2->dims[i];
|
||||
|
||||
if ( strcmp(s1dim->name, s2dim->name) != 0 )
|
||||
if ( strcasecmp(s1dim->name, s2dim->name) != 0 )
|
||||
return false;
|
||||
|
||||
if ( s1dim->interpretation != s2dim->interpretation )
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user