fix gpc compare searchpath problem

This commit is contained in:
gentle_hu 2021-06-30 16:27:54 +08:00
parent 5801e94cb5
commit c6b1e6dd61
1 changed files with 3 additions and 0 deletions

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;
}
/*