We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67b1919 commit f0ecc38Copy full SHA for f0ecc38
.ci/make_test_base
@@ -19,7 +19,10 @@ def prepare_extlist(value):
19
if "pg_pathman" in l:
20
# remove duplicates and reorder extension list to move pg_pathman to tail
21
nl = sorted(list(set(l)), cmp = lambda a,b: 1 if a=="pg_pathman" else -1)
22
- new_value = "'{}'".format(",".join(nl))
+ if len(nl) > 0:
23
+ new_value = "'{}'".format(",".join(nl))
24
+ else:
25
+ new_value = "''"
26
return new_value
27
else:
28
return value
0 commit comments