Fix ndjson unsupported (#9500)

master
Frank Wessels 4 years ago committed by GitHub
parent 28f9c477a8
commit 086be07bf5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      pkg/s3select/simdj/reader_amd64_test.go

@ -61,6 +61,10 @@ var testCases = []struct {
}
func TestNDJSON(t *testing.T) {
if !simdjson.SupportedCPU() {
t.Skip("Unsupported cpu")
}
for _, tt := range testCases {
t.Run(tt.name, func(t *testing.T) {
Loading…
Cancel
Save