forked from huawei/openGauss-server
fix gpc compare searchpath problem
This commit is contained in:
parent
5801e94cb5
commit
c6b1e6dd61
|
|
@ -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;
|
||||
}
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in New Issue