fix gpc compare searchpath problem

This commit is contained in:
gentle_hu
2021-06-30 16:27:54 +08:00
parent 68612d03b3
commit 083d2f64ab

View File

@ -72,6 +72,9 @@ CompareSearchPath(struct OverrideSearchPath* path1, struct OverrideSearchPath* p
if (list_difference_oid(path1->schemas, path2->schemas) != NULL) {
return false;
}
if (list_difference_oid(path2->schemas, path1->schemas) != NULL) {
return false;
}
return true;
}
/*