Skip to content

Commit

Permalink
Skip more parquest_s3_fdw tests
Browse files Browse the repository at this point in the history
  • Loading branch information
owenthereal committed Dec 4, 2023
1 parent b22bb48 commit b4d6118
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions acceptance/shared/cases.go
Original file line number Diff line number Diff line change
Expand Up @@ -492,13 +492,15 @@ OPTIONS (
dirname 's3://%s/parquet'
);
`, awsRegion, awsAccessKey, awsSecretKey, awsS3Bucket),
TargetPGVersions: []PGVersion{PGVersion13, PGVersion14, PGVersion15},
},
{
Name: "validate parquet_s3_fdw happy path",
Skip: shouldSkipParquetS3Tests,
SQL: `
SELECT count(*) FROM userdata_3;
`,
TargetPGVersions: []PGVersion{PGVersion13, PGVersion14, PGVersion15},
Validate: func(t *testing.T, row pgx.Row) {
var count int
if err := row.Scan(&count); err != nil {
Expand Down

0 comments on commit b4d6118

Please sign in to comment.