Skip to content

Commit

Permalink
exclude ArrayTest versions less than 9.1 (#2645)
Browse files Browse the repository at this point in the history
  • Loading branch information
davecramer committed Oct 19, 2022
1 parent 9f90de9 commit 98c04a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/matrix.js
Expand Up @@ -200,7 +200,7 @@ matrix.exclude(row => row.ssl.value === 'yes' && isLessThan(row.pg_version, '9.3
matrix.exclude(row => row.scram.value === 'yes' && isLessThan(row.pg_version, '10'));
matrix.exclude(row => row.replication.value === 'yes' && isLessThan(row.pg_version, '9.6'));
//org.postgresql.test.jdbc2.ArrayTest fails using simple mode for versions less than 9.0 with malformed Array literal
matrix.exclude( row => row.query_mode == 'simple' && isLessThan(row.pg_version, '9.1'));
matrix.exclude( row => row.query_mode.value == 'simple' && isLessThan(row.pg_version, '9.1'));
//matrix.exclude({query_mode: {value: 'simple'}, pg_version: '8.4'});
// Microsoft Java has no distribution for 8
matrix.exclude({java_distribution: 'microsoft', java_version: '8'});
Expand Down

0 comments on commit 98c04a0

Please sign in to comment.