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 822fbbf commit 076e3fdCopy full SHA for 076e3fd
tests/checkdb_test.py
@@ -40,9 +40,11 @@ def test_checkdb_amcheck_only_sanity(self):
40
"create table idxpart (a int) "
41
"partition by range (a)")
42
43
- node.safe_psql(
44
- "postgres",
45
- "create index on idxpart(a)")
+ # there aren't partitioned indexes on 10 and lesser versions
+ if self.get_version(node) >= 110000:
+ node.safe_psql(
46
+ "postgres",
47
+ "create index on idxpart(a)")
48
49
try:
50
node.safe_psql(
0 commit comments