Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run tests on s390x #58

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

pavolloffay
Copy link

@pavolloffay pavolloffay commented Sep 5, 2023

Updates #56

This PR demonstrates that tests do not run on s390x (IBM Z, bigendian) architecture.

docker buildx build --progress plain --platform linux/s390x --tag pavolloffay/parque-go:s390x --build-arg=TARGETARCH=s390x -f ./Dockerfile .                                                                     1 ↵ ploffay@fedora
#0 building with "dreamy_buck" instance using docker-container driver

#1 [internal] load build definition from Dockerfile
#1 transferring dockerfile: 312B done
#1 DONE 0.0s

#2 [auth] library/golang:pull token for registry-1.docker.io
#2 DONE 0.0s

#3 [internal] load metadata for docker.io/library/golang:1.20
#3 DONE 1.7s

#4 [internal] load .dockerignore
#4 transferring context: 2B done
#4 DONE 0.0s

#5 [internal] load build context
#5 transferring context: 23.16kB 0.0s done
#5 DONE 0.0s

#6 [1/6] FROM docker.io/library/golang:1.20@sha256:741d6f9bcab778441efe05c8e4369d4f8ff56c9a635a97d77f55d8b0ec62f907
#6 resolve docker.io/library/golang:1.20@sha256:741d6f9bcab778441efe05c8e4369d4f8ff56c9a635a97d77f55d8b0ec62f907 0.0s done
#6 DONE 0.0s

#7 [2/6] WORKDIR /workspace/parque
#7 CACHED

#8 [3/6] ADD ./ ./
#8 DONE 0.1s

#9 [4/6] RUN go env
#9 1.335 GO111MODULE=""
#9 1.335 GOARCH="s390x"
#9 1.335 GOBIN=""
#9 1.335 GOCACHE="/root/.cache/go-build"
#9 1.335 GOENV="/root/.config/go/env"
#9 1.335 GOEXE=""
#9 1.335 GOEXPERIMENT=""
#9 1.335 GOFLAGS=""
#9 1.335 GOHOSTARCH="s390x"
#9 1.335 GOHOSTOS="linux"
#9 1.335 GOINSECURE=""
#9 1.335 GOMODCACHE="/go/pkg/mod"
#9 1.335 GONOPROXY=""
#9 1.335 GONOSUMDB=""
#9 1.336 GOOS="linux"
#9 1.336 GOPATH="/go"
#9 1.336 GOPRIVATE=""
#9 1.336 GOPROXY="https://proxy.golang.org,direct"
#9 1.336 GOROOT="/usr/local/go"
#9 1.336 GOSUMDB="sum.golang.org"
#9 1.336 GOTMPDIR=""
#9 1.336 GOTOOLDIR="/usr/local/go/pkg/tool/linux_s390x"
#9 1.336 GOVCS=""
#9 1.336 GOVERSION="go1.20.7"
#9 1.336 GCCGO="gccgo"
#9 1.336 AR="ar"
#9 1.336 CC="s390x-linux-gnu-gcc"
#9 1.336 CXX="g++"
#9 1.336 CGO_ENABLED="1"
#9 1.336 GOMOD="/workspace/parque/go.mod"
#9 1.336 GOWORK=""
#9 1.336 CGO_CFLAGS="-O2 -g"
#9 1.336 CGO_CPPFLAGS=""
#9 1.336 CGO_CXXFLAGS="-O2 -g"
#9 1.336 CGO_FFLAGS="-O2 -g"
#9 1.336 CGO_LDFLAGS="-O2 -g"
#9 1.336 PKG_CONFIG="pkg-config"
#9 1.336 GOGCCFLAGS="-fPIC -m64 -march=z196 -pthread -Wl,--no-gc-sections -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build1556461471=/tmp/go-build -gno-record-gcc-switches"
#9 DONE 1.4s

#10 [5/6] RUN go test -v -trimpath -tags=purego
#10 0.423 go: downloading github.com/olekukonko/tablewriter v0.0.5
#10 0.423 go: downloading github.com/google/uuid v1.3.0
#10 0.435 go: downloading github.com/segmentio/encoding v0.3.6
#10 0.499 go: downloading github.com/hexops/gotextdiff v1.0.3
#10 0.517 go: downloading google.golang.org/protobuf v1.30.0
#10 0.551 go: downloading github.com/pierrec/lz4/v4 v4.1.18
#10 0.553 go: downloading github.com/klauspost/compress v1.16.7
#10 0.681 go: downloading github.com/andybalholm/brotli v1.0.5
#10 2.140 go: downloading github.com/mattn/go-runewidth v0.0.9
#10 296.8 === RUN   TestSplitBlockFilter
#10 296.8 === RUN   TestSplitBlockFilter/BOOLEAN
#10 296.8 === RUN   TestSplitBlockFilter/INT32
#10 296.9 === RUN   TestSplitBlockFilter/INT64
#10 297.0 === RUN   TestSplitBlockFilter/INT96
#10 297.0     bloom_test.go:151: test #1: failed on input of size 1: []deprecated.Int96{deprecated.Int96{0xc2fd9401, 0xffd341c0, 0x4f6ec873}}
#10 297.0         
#10 297.0 === RUN   TestSplitBlockFilter/FLOAT
#10 297.1 === RUN   TestSplitBlockFilter/DOUBLE
#10 297.2 === RUN   TestSplitBlockFilter/BYTE_ARRAY
#10 297.5 === RUN   TestSplitBlockFilter/FIXED_LEN_BYTE_ARRAY
#10 297.7 --- FAIL: TestSplitBlockFilter (0.93s)
#10 297.7     --- PASS: TestSplitBlockFilter/BOOLEAN (0.06s)
#10 297.7     --- PASS: TestSplitBlockFilter/INT32 (0.07s)
#10 297.7     --- PASS: TestSplitBlockFilter/INT64 (0.10s)
#10 297.7     --- FAIL: TestSplitBlockFilter/INT96 (0.00s)
#10 297.7     --- PASS: TestSplitBlockFilter/FLOAT (0.12s)
#10 297.7     --- PASS: TestSplitBlockFilter/DOUBLE (0.12s)
#10 297.7     --- PASS: TestSplitBlockFilter/BYTE_ARRAY (0.28s)
#10 297.7     --- PASS: TestSplitBlockFilter/FIXED_LEN_BYTE_ARRAY (0.18s)
#10 297.7 === RUN   TestBufferAlwaysCorrectSize
#10 297.7 --- PASS: TestBufferAlwaysCorrectSize (0.01s)
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=0
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=1
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=2049
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=4096
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=4097
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=8192
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=8193
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=16384
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=16385
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=32768
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=32769
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=262143
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=262144
#10 297.7 === RUN   TestBufferPoolBucketIndexAndSizeOf/size=262145
#10 297.7 --- PASS: TestBufferPoolBucketIndexAndSizeOf (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=0 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=1 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=2049 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=4096 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=4097 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=8192 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=8193 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=16384 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=16385 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=32768 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=32769 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=262143 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=262144 (0.00s)
#10 297.7     --- PASS: TestBufferPoolBucketIndexAndSizeOf/size=262145 (0.00s)
#10 297.7 === RUN   TestBroadcastValueInt32
#10 297.7 --- PASS: TestBroadcastValueInt32 (0.00s)
#10 297.7 === RUN   TestBroadcastRangeInt32
#10 297.7 --- PASS: TestBroadcastRangeInt32 (0.00s)
#10 297.7 === RUN   TestIssue501
#10 297.7 --- PASS: TestIssue501 (0.00s)
#10 297.7 === RUN   TestIncrementByteArrayInplace
#10 297.7 --- PASS: TestIncrementByteArrayInplace (0.00s)
#10 297.7 === RUN   TestCompareNullsFirst
#10 297.7 --- PASS: TestCompareNullsFirst (0.00s)
#10 297.7 === RUN   TestCompareNullsLast
#10 297.7 --- PASS: TestCompareNullsLast (0.00s)
#10 297.7 === RUN   TestNullIndex
#10 297.7 === RUN   TestNullIndex/bool
#10 297.7 === RUN   TestNullIndex/int
#10 297.8 === RUN   TestNullIndex/int32
#10 297.8 === RUN   TestNullIndex/int64
#10 297.8 === RUN   TestNullIndex/uint
#10 297.8 === RUN   TestNullIndex/uint32
#10 297.9 === RUN   TestNullIndex/uint64
#10 297.9 === RUN   TestNullIndex/float32
#10 297.9 === RUN   TestNullIndex/float64
#10 297.9 === RUN   TestNullIndex/[10]uint8
#10 298.1 === RUN   TestNullIndex/[16]uint8
#10 298.4 === RUN   TestNullIndex/deprecated.Int96
#10 298.5 === RUN   TestNullIndex/string
#10 298.6 === RUN   TestNullIndex/*struct_{}
#10 298.6 --- PASS: TestNullIndex (0.89s)
#10 298.6     --- PASS: TestNullIndex/bool (0.02s)
#10 298.6     --- PASS: TestNullIndex/int (0.02s)
#10 298.6     --- PASS: TestNullIndex/int32 (0.02s)
#10 298.6     --- PASS: TestNullIndex/int64 (0.02s)
#10 298.6     --- PASS: TestNullIndex/uint (0.02s)
#10 298.6     --- PASS: TestNullIndex/uint32 (0.02s)
#10 298.6     --- PASS: TestNullIndex/uint64 (0.02s)
#10 298.6     --- PASS: TestNullIndex/float32 (0.03s)
#10 298.6     --- PASS: TestNullIndex/float64 (0.02s)
#10 298.6     --- PASS: TestNullIndex/[10]uint8 (0.19s)
#10 298.6     --- PASS: TestNullIndex/[16]uint8 (0.28s)
#10 298.6     --- PASS: TestNullIndex/deprecated.Int96 (0.08s)
#10 298.6     --- PASS: TestNullIndex/string (0.06s)
#10 298.6     --- PASS: TestNullIndex/*struct_{} (0.05s)
#10 298.6 === RUN   TestOrderOfBool
#10 298.7 --- PASS: TestOrderOfBool (0.06s)
#10 298.7 === RUN   TestOrderOfInt32
#10 298.8 --- PASS: TestOrderOfInt32 (0.11s)
#10 298.8 === RUN   TestOrderOfInt64
#10 298.9 --- PASS: TestOrderOfInt64 (0.11s)
#10 298.9 === RUN   TestOrderOfUint32
#10 299.0 --- PASS: TestOrderOfUint32 (0.11s)
#10 299.0 === RUN   TestOrderOfUint64
#10 299.1 --- PASS: TestOrderOfUint64 (0.11s)
#10 299.1 === RUN   TestOrderOfFloat32
#10 299.2 --- PASS: TestOrderOfFloat32 (0.12s)
#10 299.2 === RUN   TestOrderOfFloat64
#10 299.4 --- PASS: TestOrderOfFloat64 (0.13s)
#10 299.4 === RUN   TestOrderOfBytes
#10 299.8 --- PASS: TestOrderOfBytes (0.46s)
#10 299.8 === RUN   TestBoundsInt32
#10 299.8 --- PASS: TestBoundsInt32 (0.02s)
#10 299.8 === RUN   TestBoundsInt64
#10 299.9 --- PASS: TestBoundsInt64 (0.02s)
#10 299.9 === RUN   TestBoundsUint32
#10 299.9 --- PASS: TestBoundsUint32 (0.02s)
#10 299.9 === RUN   TestBoundsUint64
#10 299.9 --- PASS: TestBoundsUint64 (0.02s)
#10 299.9 === RUN   TestBoundsFloat32
#10 299.9 --- PASS: TestBoundsFloat32 (0.02s)
#10 299.9 === RUN   TestBoundsFloat64
#10 300.0 --- PASS: TestBoundsFloat64 (0.02s)
#10 300.0 === RUN   TestBE128MinMaxSimilar
#10 300.0 --- PASS: TestBE128MinMaxSimilar (0.00s)
#10 300.0 === RUN   TestBoundsBE128
#10 300.2 --- PASS: TestBoundsBE128 (0.29s)
#10 300.2 === RUN   TestBoundsFixedLenByteArray
#10 300.3 --- PASS: TestBoundsFixedLenByteArray (0.04s)
#10 300.3 === RUN   TestMaxInt32
#10 300.3 --- PASS: TestMaxInt32 (0.02s)
#10 300.3 === RUN   TestMaxInt64
#10 300.3 --- PASS: TestMaxInt64 (0.03s)
#10 300.3 === RUN   TestMaxUint32
#10 300.4 --- PASS: TestMaxUint32 (0.02s)
#10 300.4 === RUN   TestMaxUint64
#10 300.4 --- PASS: TestMaxUint64 (0.02s)
#10 300.4 === RUN   TestMaxFloat32
#10 300.4 --- PASS: TestMaxFloat32 (0.03s)
#10 300.4 === RUN   TestMaxFloat64
#10 300.4 --- PASS: TestMaxFloat64 (0.02s)
#10 300.4 === RUN   TestMaxBE128
#10 300.7 --- PASS: TestMaxBE128 (0.31s)
#10 300.7 === RUN   TestMaxFixedLenByteArray
#10 300.8 --- PASS: TestMaxFixedLenByteArray (0.03s)
#10 300.8 === RUN   TestMinInt32
#10 300.8 --- PASS: TestMinInt32 (0.02s)
#10 300.8 === RUN   TestMinInt64
#10 300.8 --- PASS: TestMinInt64 (0.02s)
#10 300.8 === RUN   TestMinUint32
#10 300.8 --- PASS: TestMinUint32 (0.02s)
#10 300.8 === RUN   TestMinUint64
#10 300.9 --- PASS: TestMinUint64 (0.02s)
#10 300.9 === RUN   TestMinFloat32
#10 300.9 --- PASS: TestMinFloat32 (0.02s)
#10 300.9 === RUN   TestMinFloat64
#10 300.9 --- PASS: TestMinFloat64 (0.02s)
#10 300.9 === RUN   TestMinBE128
#10 301.2 --- PASS: TestMinBE128 (0.30s)
#10 301.2 === RUN   TestMinFixedLenByteArray
#10 301.2 --- PASS: TestMinFixedLenByteArray (0.02s)
#10 301.2 === RUN   TestBufferPool
#10 301.2 === RUN   TestBufferPool/write_bytes
#10 301.2 === RUN   TestBufferPool/write_string
#10 301.2 === RUN   TestBufferPool/copy_to_buffer
#10 301.2 === RUN   TestBufferPool/copy_from_buffer
#10 301.2 --- PASS: TestBufferPool (0.00s)
#10 301.2     --- PASS: TestBufferPool/write_bytes (0.00s)
#10 301.2     --- PASS: TestBufferPool/write_string (0.00s)
#10 301.2     --- PASS: TestBufferPool/copy_to_buffer (0.00s)
#10 301.2     --- PASS: TestBufferPool/copy_from_buffer (0.00s)
#10 301.2 === RUN   TestFileBufferPool
#10 301.2 === RUN   TestFileBufferPool/write_bytes
#10 301.2 === RUN   TestFileBufferPool/write_string
#10 301.2 === RUN   TestFileBufferPool/copy_to_buffer
#10 301.2 === RUN   TestFileBufferPool/copy_from_buffer
#10 301.2 --- PASS: TestFileBufferPool (0.00s)
#10 301.2     --- PASS: TestFileBufferPool/write_bytes (0.00s)
#10 301.2     --- PASS: TestFileBufferPool/write_string (0.00s)
#10 301.2     --- PASS: TestFileBufferPool/copy_to_buffer (0.00s)
#10 301.2     --- PASS: TestFileBufferPool/copy_from_buffer (0.00s)
#10 301.2 === RUN   TestGenericBuffer
#10 301.2 === RUN   TestGenericBuffer/booleanColumn
#10 301.3 === RUN   TestGenericBuffer/int32Column
#10 301.3 === RUN   TestGenericBuffer/int64Column
#10 301.3 === RUN   TestGenericBuffer/int96Column
#10 301.4 === RUN   TestGenericBuffer/floatColumn
#10 301.4 === RUN   TestGenericBuffer/doubleColumn
#10 301.5 === RUN   TestGenericBuffer/byteArrayColumn
#10 301.6 === RUN   TestGenericBuffer/fixedLenByteArrayColumn
#10 301.7 === RUN   TestGenericBuffer/stringColumn
#10 301.7 === RUN   TestGenericBuffer/indexedStringColumn
#10 301.8 === RUN   TestGenericBuffer/uuidColumn
#10 301.9 === RUN   TestGenericBuffer/timeColumn
#10 302.0 === RUN   TestGenericBuffer/timeInMillisColumn
#10 302.0 === RUN   TestGenericBuffer/mapColumn
#10 302.6 === RUN   TestGenericBuffer/decimalColumn
#10 302.6 === RUN   TestGenericBuffer/addressBook
#10 303.2 === RUN   TestGenericBuffer/contact
#10 303.3 === RUN   TestGenericBuffer/listColumn2
#10 303.3 === RUN   TestGenericBuffer/listColumn1
#10 303.6 === RUN   TestGenericBuffer/listColumn0
#10 304.7 === RUN   TestGenericBuffer/nestedListColumn1
#10 305.0 === RUN   TestGenericBuffer/nestedListColumn
#10 306.2 === RUN   TestGenericBuffer/#00
#10 306.4 === RUN   TestGenericBuffer/paddedBooleanColumn
#10 306.4 === RUN   TestGenericBuffer/optionalInt32Column
#10 306.5 === RUN   TestGenericBuffer/repeatedInt32Column
#10 306.6 --- PASS: TestGenericBuffer (5.38s)
#10 306.6     --- PASS: TestGenericBuffer/booleanColumn (0.04s)
#10 306.6     --- PASS: TestGenericBuffer/int32Column (0.04s)
#10 306.6     --- PASS: TestGenericBuffer/int64Column (0.04s)
#10 306.6     --- PASS: TestGenericBuffer/int96Column (0.06s)
#10 306.6     --- PASS: TestGenericBuffer/floatColumn (0.04s)
#10 306.6     --- PASS: TestGenericBuffer/doubleColumn (0.03s)
#10 306.6     --- PASS: TestGenericBuffer/byteArrayColumn (0.09s)
#10 306.6     --- PASS: TestGenericBuffer/fixedLenByteArrayColumn (0.09s)
#10 306.6     --- PASS: TestGenericBuffer/stringColumn (0.05s)
#10 306.6     --- PASS: TestGenericBuffer/indexedStringColumn (0.05s)
#10 306.6     --- PASS: TestGenericBuffer/uuidColumn (0.13s)
#10 306.6     --- PASS: TestGenericBuffer/timeColumn (0.06s)
#10 306.6     --- PASS: TestGenericBuffer/timeInMillisColumn (0.07s)
#10 306.6     --- PASS: TestGenericBuffer/mapColumn (0.53s)
#10 306.6     --- PASS: TestGenericBuffer/decimalColumn (0.03s)
#10 306.6     --- PASS: TestGenericBuffer/addressBook (0.58s)
#10 306.6     --- PASS: TestGenericBuffer/contact (0.09s)
#10 306.6     --- PASS: TestGenericBuffer/listColumn2 (0.05s)
#10 306.6     --- PASS: TestGenericBuffer/listColumn1 (0.25s)
#10 306.6     --- PASS: TestGenericBuffer/listColumn0 (1.17s)
#10 306.6     --- PASS: TestGenericBuffer/nestedListColumn1 (0.25s)
#10 306.6     --- PASS: TestGenericBuffer/nestedListColumn (1.22s)
#10 306.6     --- PASS: TestGenericBuffer/#00 (0.16s)
#10 306.6     --- PASS: TestGenericBuffer/paddedBooleanColumn (0.05s)
#10 306.6     --- PASS: TestGenericBuffer/optionalInt32Column (0.04s)
#10 306.6     --- PASS: TestGenericBuffer/repeatedInt32Column (0.16s)
#10 306.6 === RUN   TestIssue327
#10 306.6 === RUN   TestIssue327/untagged_nested_lists_should_panic
#10 306.6 --- PASS: TestIssue327 (0.00s)
#10 306.6     --- PASS: TestIssue327/untagged_nested_lists_should_panic (0.00s)
#10 306.6 === RUN   TestIssue346
#10 306.6 --- PASS: TestIssue346 (0.00s)
#10 306.6 === RUN   TestIssue347
#10 306.6 --- PASS: TestIssue347 (0.00s)
#10 306.6 === RUN   TestBuffer
#10 306.6 === RUN   TestBuffer/boolean
#10 306.6 === RUN   TestBuffer/boolean/plain
#10 306.6 === RUN   TestBuffer/boolean/plain/optional
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/unordered
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/unordered/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/unordered/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/ascending
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/ascending/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/ascending/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/descending
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/descending/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/descending/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/optional/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/unordered
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/unordered/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/unordered/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/ascending
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/ascending/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/ascending/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/descending
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/descending/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/descending/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/repeated/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/required
#10 306.6 === RUN   TestBuffer/boolean/plain/required/unordered
#10 306.6 === RUN   TestBuffer/boolean/plain/required/unordered/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/required/unordered/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/required/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/required/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/required/ascending
#10 306.6 === RUN   TestBuffer/boolean/plain/required/ascending/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/required/ascending/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/required/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/required/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/required/descending
#10 306.6 === RUN   TestBuffer/boolean/plain/required/descending/#00
#10 306.6 === RUN   TestBuffer/boolean/plain/required/descending/#01
#10 306.6 === RUN   TestBuffer/boolean/plain/required/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/plain/required/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/unordered
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/unordered/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/unordered/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/ascending
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/ascending/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/ascending/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/descending
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/descending/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/descending/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/optional/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/unordered
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/unordered/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/unordered/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/ascending
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/ascending/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/ascending/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/descending
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/descending/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/descending/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/repeated/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/required
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/unordered
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/unordered/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/unordered/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/ascending
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/ascending/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/ascending/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/descending
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/descending/#00
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/descending/#01
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/boolean/indexed/required/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=true got=false
#10 306.6 === RUN   TestBuffer/int32
#10 306.6 === RUN   TestBuffer/int32/plain
#10 306.6 === RUN   TestBuffer/int32/plain/optional
#10 306.6 === RUN   TestBuffer/int32/plain/optional/unordered
#10 306.6 === RUN   TestBuffer/int32/plain/optional/unordered/#00
#10 306.6 === RUN   TestBuffer/int32/plain/optional/unordered/#01
#10 306.6 === RUN   TestBuffer/int32/plain/optional/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/optional/unordered/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/optional/ascending
#10 306.6 === RUN   TestBuffer/int32/plain/optional/ascending/#00
#10 306.6 === RUN   TestBuffer/int32/plain/optional/ascending/#01
#10 306.6 === RUN   TestBuffer/int32/plain/optional/ascending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/optional/ascending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/optional/descending
#10 306.6 === RUN   TestBuffer/int32/plain/optional/descending/#00
#10 306.6 === RUN   TestBuffer/int32/plain/optional/descending/#01
#10 306.6 === RUN   TestBuffer/int32/plain/optional/descending/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/optional/descending/#03
#10 306.6     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/repeated
#10 306.6 === RUN   TestBuffer/int32/plain/repeated/unordered
#10 306.6 === RUN   TestBuffer/int32/plain/repeated/unordered/#00
#10 306.6 === RUN   TestBuffer/int32/plain/repeated/unordered/#01
#10 306.6 === RUN   TestBuffer/int32/plain/repeated/unordered/#02
#10 306.6     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.6 === RUN   TestBuffer/int32/plain/repeated/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/ascending
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/descending
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/repeated/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/required
#10 306.7 === RUN   TestBuffer/int32/plain/required/unordered
#10 306.7 === RUN   TestBuffer/int32/plain/required/unordered/#00
#10 306.7 === RUN   TestBuffer/int32/plain/required/unordered/#01
#10 306.7 === RUN   TestBuffer/int32/plain/required/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/required/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/required/ascending
#10 306.7 === RUN   TestBuffer/int32/plain/required/ascending/#00
#10 306.7 === RUN   TestBuffer/int32/plain/required/ascending/#01
#10 306.7 === RUN   TestBuffer/int32/plain/required/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/required/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/required/descending
#10 306.7 === RUN   TestBuffer/int32/plain/required/descending/#00
#10 306.7 === RUN   TestBuffer/int32/plain/required/descending/#01
#10 306.7 === RUN   TestBuffer/int32/plain/required/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/plain/required/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed
#10 306.7 === RUN   TestBuffer/int32/indexed/optional
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/unordered
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/ascending
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/descending
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/descending/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/descending/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/optional/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/unordered
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/ascending
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/descending
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/repeated/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/required
#10 306.7 === RUN   TestBuffer/int32/indexed/required/unordered
#10 306.7 === RUN   TestBuffer/int32/indexed/required/unordered/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/required/unordered/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/required/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/required/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/required/ascending
#10 306.7 === RUN   TestBuffer/int32/indexed/required/ascending/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/required/ascending/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/required/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/required/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/required/descending
#10 306.7 === RUN   TestBuffer/int32/indexed/required/descending/#00
#10 306.7 === RUN   TestBuffer/int32/indexed/required/descending/#01
#10 306.7 === RUN   TestBuffer/int32/indexed/required/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/int32/indexed/required/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=2147483647 got=0
#10 306.7 === RUN   TestBuffer/int64
#10 306.7 === RUN   TestBuffer/int64/plain
#10 306.7 === RUN   TestBuffer/int64/plain/optional
#10 306.7 === RUN   TestBuffer/int64/plain/optional/unordered
#10 306.7 === RUN   TestBuffer/int64/plain/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/int64/plain/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/int64/plain/optional/unordered/#02
#10 306.7 === RUN   TestBuffer/int64/plain/optional/unordered/#03
#10 306.7 === RUN   TestBuffer/int64/plain/optional/ascending
#10 306.7 === RUN   TestBuffer/int64/plain/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/int64/plain/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/int64/plain/optional/ascending/#02
#10 306.7 === RUN   TestBuffer/int64/plain/optional/ascending/#03
#10 306.7 === RUN   TestBuffer/int64/plain/optional/descending
#10 306.7 === RUN   TestBuffer/int64/plain/optional/descending/#00
#10 306.7 === RUN   TestBuffer/int64/plain/optional/descending/#01
#10 306.7 === RUN   TestBuffer/int64/plain/optional/descending/#02
#10 306.7 === RUN   TestBuffer/int64/plain/optional/descending/#03
#10 306.7 === RUN   TestBuffer/int64/plain/repeated
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/unordered
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/unordered/#02
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/unordered/#03
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/ascending
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/ascending/#02
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/ascending/#03
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/descending
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/descending/#02
#10 306.7 === RUN   TestBuffer/int64/plain/repeated/descending/#03
#10 306.7 === RUN   TestBuffer/int64/plain/required
#10 306.7 === RUN   TestBuffer/int64/plain/required/unordered
#10 306.7 === RUN   TestBuffer/int64/plain/required/unordered/#00
#10 306.7 === RUN   TestBuffer/int64/plain/required/unordered/#01
#10 306.7 === RUN   TestBuffer/int64/plain/required/unordered/#02
#10 306.7 === RUN   TestBuffer/int64/plain/required/unordered/#03
#10 306.7 === RUN   TestBuffer/int64/plain/required/ascending
#10 306.7 === RUN   TestBuffer/int64/plain/required/ascending/#00
#10 306.7 === RUN   TestBuffer/int64/plain/required/ascending/#01
#10 306.7 === RUN   TestBuffer/int64/plain/required/ascending/#02
#10 306.7 === RUN   TestBuffer/int64/plain/required/ascending/#03
#10 306.7 === RUN   TestBuffer/int64/plain/required/descending
#10 306.7 === RUN   TestBuffer/int64/plain/required/descending/#00
#10 306.7 === RUN   TestBuffer/int64/plain/required/descending/#01
#10 306.7 === RUN   TestBuffer/int64/plain/required/descending/#02
#10 306.7 === RUN   TestBuffer/int64/plain/required/descending/#03
#10 306.7 === RUN   TestBuffer/int64/indexed
#10 306.7 === RUN   TestBuffer/int64/indexed/optional
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/unordered
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/unordered/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/unordered/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/ascending
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/ascending/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/ascending/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/descending
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/descending/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/descending/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/descending/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/optional/descending/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/unordered
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/unordered/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/unordered/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/ascending
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/ascending/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/ascending/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/descending
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/descending/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/repeated/descending/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/required
#10 306.7 === RUN   TestBuffer/int64/indexed/required/unordered
#10 306.7 === RUN   TestBuffer/int64/indexed/required/unordered/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/required/unordered/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/required/unordered/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/required/unordered/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/required/ascending
#10 306.7 === RUN   TestBuffer/int64/indexed/required/ascending/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/required/ascending/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/required/ascending/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/required/ascending/#03
#10 306.7 === RUN   TestBuffer/int64/indexed/required/descending
#10 306.7 === RUN   TestBuffer/int64/indexed/required/descending/#00
#10 306.7 === RUN   TestBuffer/int64/indexed/required/descending/#01
#10 306.7 === RUN   TestBuffer/int64/indexed/required/descending/#02
#10 306.7 === RUN   TestBuffer/int64/indexed/required/descending/#03
#10 306.7 === RUN   TestBuffer/float
#10 306.7 === RUN   TestBuffer/float/plain
#10 306.7 === RUN   TestBuffer/float/plain/optional
#10 306.7 === RUN   TestBuffer/float/plain/optional/unordered
#10 306.7 === RUN   TestBuffer/float/plain/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/float/plain/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/float/plain/optional/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/optional/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/optional/ascending
#10 306.7 === RUN   TestBuffer/float/plain/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/float/plain/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/float/plain/optional/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/optional/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/optional/descending
#10 306.7 === RUN   TestBuffer/float/plain/optional/descending/#00
#10 306.7 === RUN   TestBuffer/float/plain/optional/descending/#01
#10 306.7 === RUN   TestBuffer/float/plain/optional/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/optional/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/repeated
#10 306.7 === RUN   TestBuffer/float/plain/repeated/unordered
#10 306.7 === RUN   TestBuffer/float/plain/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/float/plain/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/float/plain/repeated/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/repeated/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/repeated/ascending
#10 306.7 === RUN   TestBuffer/float/plain/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/float/plain/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/float/plain/repeated/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/repeated/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/repeated/descending
#10 306.7 === RUN   TestBuffer/float/plain/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/float/plain/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/float/plain/repeated/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/repeated/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/required
#10 306.7 === RUN   TestBuffer/float/plain/required/unordered
#10 306.7 === RUN   TestBuffer/float/plain/required/unordered/#00
#10 306.7 === RUN   TestBuffer/float/plain/required/unordered/#01
#10 306.7 === RUN   TestBuffer/float/plain/required/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/required/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/required/ascending
#10 306.7 === RUN   TestBuffer/float/plain/required/ascending/#00
#10 306.7 === RUN   TestBuffer/float/plain/required/ascending/#01
#10 306.7 === RUN   TestBuffer/float/plain/required/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/required/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/plain/required/descending
#10 306.7 === RUN   TestBuffer/float/plain/required/descending/#00
#10 306.7 === RUN   TestBuffer/float/plain/required/descending/#01
#10 306.7 === RUN   TestBuffer/float/plain/required/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/plain/required/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed
#10 306.7 === RUN   TestBuffer/float/indexed/optional
#10 306.7 === RUN   TestBuffer/float/indexed/optional/unordered
#10 306.7 === RUN   TestBuffer/float/indexed/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/float/indexed/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/float/indexed/optional/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/optional/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/optional/ascending
#10 306.7 === RUN   TestBuffer/float/indexed/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/float/indexed/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/float/indexed/optional/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/optional/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/optional/descending
#10 306.7 === RUN   TestBuffer/float/indexed/optional/descending/#00
#10 306.7 === RUN   TestBuffer/float/indexed/optional/descending/#01
#10 306.7 === RUN   TestBuffer/float/indexed/optional/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/optional/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/repeated
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/unordered
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/ascending
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/descending
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/repeated/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/required
#10 306.7 === RUN   TestBuffer/float/indexed/required/unordered
#10 306.7 === RUN   TestBuffer/float/indexed/required/unordered/#00
#10 306.7 === RUN   TestBuffer/float/indexed/required/unordered/#01
#10 306.7 === RUN   TestBuffer/float/indexed/required/unordered/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/required/unordered/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/required/ascending
#10 306.7 === RUN   TestBuffer/float/indexed/required/ascending/#00
#10 306.7 === RUN   TestBuffer/float/indexed/required/ascending/#01
#10 306.7 === RUN   TestBuffer/float/indexed/required/ascending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/required/ascending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/required/descending
#10 306.7 === RUN   TestBuffer/float/indexed/required/descending/#00
#10 306.7 === RUN   TestBuffer/float/indexed/required/descending/#01
#10 306.7 === RUN   TestBuffer/float/indexed/required/descending/#02
#10 306.7     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.7 === RUN   TestBuffer/float/indexed/required/descending/#03
#10 306.7     buffer_test.go:562: max value mismatch: want=3.4028235e+38 got=0
#10 306.7 === RUN   TestBuffer/double
#10 306.7 === RUN   TestBuffer/double/plain
#10 306.7 === RUN   TestBuffer/double/plain/optional
#10 306.7 === RUN   TestBuffer/double/plain/optional/unordered
#10 306.7 === RUN   TestBuffer/double/plain/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/double/plain/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/double/plain/optional/unordered/#02
#10 306.7 === RUN   TestBuffer/double/plain/optional/unordered/#03
#10 306.7 === RUN   TestBuffer/double/plain/optional/ascending
#10 306.7 === RUN   TestBuffer/double/plain/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/double/plain/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/double/plain/optional/ascending/#02
#10 306.7 === RUN   TestBuffer/double/plain/optional/ascending/#03
#10 306.7 === RUN   TestBuffer/double/plain/optional/descending
#10 306.7 === RUN   TestBuffer/double/plain/optional/descending/#00
#10 306.7 === RUN   TestBuffer/double/plain/optional/descending/#01
#10 306.7 === RUN   TestBuffer/double/plain/optional/descending/#02
#10 306.7 === RUN   TestBuffer/double/plain/optional/descending/#03
#10 306.7 === RUN   TestBuffer/double/plain/repeated
#10 306.7 === RUN   TestBuffer/double/plain/repeated/unordered
#10 306.7 === RUN   TestBuffer/double/plain/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/double/plain/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/double/plain/repeated/unordered/#02
#10 306.7 === RUN   TestBuffer/double/plain/repeated/unordered/#03
#10 306.7 === RUN   TestBuffer/double/plain/repeated/ascending
#10 306.7 === RUN   TestBuffer/double/plain/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/double/plain/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/double/plain/repeated/ascending/#02
#10 306.7 === RUN   TestBuffer/double/plain/repeated/ascending/#03
#10 306.7 === RUN   TestBuffer/double/plain/repeated/descending
#10 306.7 === RUN   TestBuffer/double/plain/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/double/plain/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/double/plain/repeated/descending/#02
#10 306.7 === RUN   TestBuffer/double/plain/repeated/descending/#03
#10 306.7 === RUN   TestBuffer/double/plain/required
#10 306.7 === RUN   TestBuffer/double/plain/required/unordered
#10 306.7 === RUN   TestBuffer/double/plain/required/unordered/#00
#10 306.7 === RUN   TestBuffer/double/plain/required/unordered/#01
#10 306.7 === RUN   TestBuffer/double/plain/required/unordered/#02
#10 306.7 === RUN   TestBuffer/double/plain/required/unordered/#03
#10 306.7 === RUN   TestBuffer/double/plain/required/ascending
#10 306.7 === RUN   TestBuffer/double/plain/required/ascending/#00
#10 306.7 === RUN   TestBuffer/double/plain/required/ascending/#01
#10 306.7 === RUN   TestBuffer/double/plain/required/ascending/#02
#10 306.7 === RUN   TestBuffer/double/plain/required/ascending/#03
#10 306.7 === RUN   TestBuffer/double/plain/required/descending
#10 306.7 === RUN   TestBuffer/double/plain/required/descending/#00
#10 306.7 === RUN   TestBuffer/double/plain/required/descending/#01
#10 306.7 === RUN   TestBuffer/double/plain/required/descending/#02
#10 306.7 === RUN   TestBuffer/double/plain/required/descending/#03
#10 306.7 === RUN   TestBuffer/double/indexed
#10 306.7 === RUN   TestBuffer/double/indexed/optional
#10 306.7 === RUN   TestBuffer/double/indexed/optional/unordered
#10 306.7 === RUN   TestBuffer/double/indexed/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/double/indexed/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/double/indexed/optional/unordered/#02
#10 306.7 === RUN   TestBuffer/double/indexed/optional/unordered/#03
#10 306.7 === RUN   TestBuffer/double/indexed/optional/ascending
#10 306.7 === RUN   TestBuffer/double/indexed/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/double/indexed/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/double/indexed/optional/ascending/#02
#10 306.7 === RUN   TestBuffer/double/indexed/optional/ascending/#03
#10 306.7 === RUN   TestBuffer/double/indexed/optional/descending
#10 306.7 === RUN   TestBuffer/double/indexed/optional/descending/#00
#10 306.7 === RUN   TestBuffer/double/indexed/optional/descending/#01
#10 306.7 === RUN   TestBuffer/double/indexed/optional/descending/#02
#10 306.7 === RUN   TestBuffer/double/indexed/optional/descending/#03
#10 306.7 === RUN   TestBuffer/double/indexed/repeated
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/unordered
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/unordered/#02
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/unordered/#03
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/ascending
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/ascending/#02
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/ascending/#03
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/descending
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/descending/#02
#10 306.7 === RUN   TestBuffer/double/indexed/repeated/descending/#03
#10 306.7 === RUN   TestBuffer/double/indexed/required
#10 306.7 === RUN   TestBuffer/double/indexed/required/unordered
#10 306.7 === RUN   TestBuffer/double/indexed/required/unordered/#00
#10 306.7 === RUN   TestBuffer/double/indexed/required/unordered/#01
#10 306.7 === RUN   TestBuffer/double/indexed/required/unordered/#02
#10 306.7 === RUN   TestBuffer/double/indexed/required/unordered/#03
#10 306.7 === RUN   TestBuffer/double/indexed/required/ascending
#10 306.7 === RUN   TestBuffer/double/indexed/required/ascending/#00
#10 306.7 === RUN   TestBuffer/double/indexed/required/ascending/#01
#10 306.7 === RUN   TestBuffer/double/indexed/required/ascending/#02
#10 306.7 === RUN   TestBuffer/double/indexed/required/ascending/#03
#10 306.7 === RUN   TestBuffer/double/indexed/required/descending
#10 306.7 === RUN   TestBuffer/double/indexed/required/descending/#00
#10 306.7 === RUN   TestBuffer/double/indexed/required/descending/#01
#10 306.7 === RUN   TestBuffer/double/indexed/required/descending/#02
#10 306.7 === RUN   TestBuffer/double/indexed/required/descending/#03
#10 306.7 === RUN   TestBuffer/string
#10 306.7 === RUN   TestBuffer/string/plain
#10 306.7 === RUN   TestBuffer/string/plain/optional
#10 306.7 === RUN   TestBuffer/string/plain/optional/unordered
#10 306.7 === RUN   TestBuffer/string/plain/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/string/plain/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/string/plain/optional/unordered/#02
#10 306.7 === RUN   TestBuffer/string/plain/optional/unordered/#03
#10 306.7 === RUN   TestBuffer/string/plain/optional/ascending
#10 306.7 === RUN   TestBuffer/string/plain/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/string/plain/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/string/plain/optional/ascending/#02
#10 306.7 === RUN   TestBuffer/string/plain/optional/ascending/#03
#10 306.7 === RUN   TestBuffer/string/plain/optional/descending
#10 306.7 === RUN   TestBuffer/string/plain/optional/descending/#00
#10 306.7 === RUN   TestBuffer/string/plain/optional/descending/#01
#10 306.7 === RUN   TestBuffer/string/plain/optional/descending/#02
#10 306.7 === RUN   TestBuffer/string/plain/optional/descending/#03
#10 306.7 === RUN   TestBuffer/string/plain/repeated
#10 306.7 === RUN   TestBuffer/string/plain/repeated/unordered
#10 306.7 === RUN   TestBuffer/string/plain/repeated/unordered/#00
#10 306.7 === RUN   TestBuffer/string/plain/repeated/unordered/#01
#10 306.7 === RUN   TestBuffer/string/plain/repeated/unordered/#02
#10 306.7 === RUN   TestBuffer/string/plain/repeated/unordered/#03
#10 306.7 === RUN   TestBuffer/string/plain/repeated/ascending
#10 306.7 === RUN   TestBuffer/string/plain/repeated/ascending/#00
#10 306.7 === RUN   TestBuffer/string/plain/repeated/ascending/#01
#10 306.7 === RUN   TestBuffer/string/plain/repeated/ascending/#02
#10 306.7 === RUN   TestBuffer/string/plain/repeated/ascending/#03
#10 306.7 === RUN   TestBuffer/string/plain/repeated/descending
#10 306.7 === RUN   TestBuffer/string/plain/repeated/descending/#00
#10 306.7 === RUN   TestBuffer/string/plain/repeated/descending/#01
#10 306.7 === RUN   TestBuffer/string/plain/repeated/descending/#02
#10 306.7 === RUN   TestBuffer/string/plain/repeated/descending/#03
#10 306.7 === RUN   TestBuffer/string/plain/required
#10 306.7 === RUN   TestBuffer/string/plain/required/unordered
#10 306.7 === RUN   TestBuffer/string/plain/required/unordered/#00
#10 306.7 === RUN   TestBuffer/string/plain/required/unordered/#01
#10 306.7 === RUN   TestBuffer/string/plain/required/unordered/#02
#10 306.7 === RUN   TestBuffer/string/plain/required/unordered/#03
#10 306.7 === RUN   TestBuffer/string/plain/required/ascending
#10 306.7 === RUN   TestBuffer/string/plain/required/ascending/#00
#10 306.7 === RUN   TestBuffer/string/plain/required/ascending/#01
#10 306.7 === RUN   TestBuffer/string/plain/required/ascending/#02
#10 306.7 === RUN   TestBuffer/string/plain/required/ascending/#03
#10 306.7 === RUN   TestBuffer/string/plain/required/descending
#10 306.7 === RUN   TestBuffer/string/plain/required/descending/#00
#10 306.7 === RUN   TestBuffer/string/plain/required/descending/#01
#10 306.7 === RUN   TestBuffer/string/plain/required/descending/#02
#10 306.7 === RUN   TestBuffer/string/plain/required/descending/#03
#10 306.7 === RUN   TestBuffer/string/indexed
#10 306.7 === RUN   TestBuffer/string/indexed/optional
#10 306.7 === RUN   TestBuffer/string/indexed/optional/unordered
#10 306.7 === RUN   TestBuffer/string/indexed/optional/unordered/#00
#10 306.7 === RUN   TestBuffer/string/indexed/optional/unordered/#01
#10 306.7 === RUN   TestBuffer/string/indexed/optional/unordered/#02
#10 306.7 === RUN   TestBuffer/string/indexed/optional/unordered/#03
#10 306.7 === RUN   TestBuffer/string/indexed/optional/ascending
#10 306.7 === RUN   TestBuffer/string/indexed/optional/ascending/#00
#10 306.7 === RUN   TestBuffer/string/indexed/optional/ascending/#01
#10 306.7 === RUN   TestBuffer/string/indexed/optional/ascending/#02
#10 306.7 === RUN   TestBuffer/string/indexed/optional/ascending/#03
#10 306.7 === RUN   TestBuffer/string/indexed/optional/descending
#10 306.7 === RUN   TestBuffer/string/indexed/optional/descending/#00
#10 306.7 === RUN   TestBuffer/string/indexed/optional/descending/#01
#10 306.7 === RUN   TestBuffer/string/indexed/optional/descending/#02
#10 306.7 === RUN   TestBuffer/string/indexed/optional/descending/#03
#10 306.8 === RUN   TestBuffer/string/indexed/repeated
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/unordered
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/ascending
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/descending
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/string/indexed/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/string/indexed/required
#10 306.8 === RUN   TestBuffer/string/indexed/required/unordered
#10 306.8 === RUN   TestBuffer/string/indexed/required/unordered/#00
#10 306.8 === RUN   TestBuffer/string/indexed/required/unordered/#01
#10 306.8 === RUN   TestBuffer/string/indexed/required/unordered/#02
#10 306.8 === RUN   TestBuffer/string/indexed/required/unordered/#03
#10 306.8 === RUN   TestBuffer/string/indexed/required/ascending
#10 306.8 === RUN   TestBuffer/string/indexed/required/ascending/#00
#10 306.8 === RUN   TestBuffer/string/indexed/required/ascending/#01
#10 306.8 === RUN   TestBuffer/string/indexed/required/ascending/#02
#10 306.8 === RUN   TestBuffer/string/indexed/required/ascending/#03
#10 306.8 === RUN   TestBuffer/string/indexed/required/descending
#10 306.8 === RUN   TestBuffer/string/indexed/required/descending/#00
#10 306.8 === RUN   TestBuffer/string/indexed/required/descending/#01
#10 306.8 === RUN   TestBuffer/string/indexed/required/descending/#02
#10 306.8 === RUN   TestBuffer/string/indexed/required/descending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/unordered
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/unordered/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/unordered/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/ascending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/ascending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/ascending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/descending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/descending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/descending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/descending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/optional/descending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/unordered
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/ascending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/descending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/unordered
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/unordered/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/unordered/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/unordered/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/unordered/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/ascending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/ascending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/ascending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/ascending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/ascending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/descending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/descending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/descending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/descending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/plain/required/descending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/unordered
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/ascending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/descending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/descending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/descending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/descending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/optional/descending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/unordered
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/ascending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/descending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/unordered
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/unordered/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/unordered/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/unordered/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/unordered/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/ascending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/ascending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/ascending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/ascending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/ascending/#03
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/descending
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/descending/#00
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/descending/#01
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/descending/#02
#10 306.8 === RUN   TestBuffer/fixed_length_byte_array/indexed/required/descending/#03
#10 306.8 === RUN   TestBuffer/uuid
#10 306.8 === RUN   TestBuffer/uuid/plain
#10 306.8 === RUN   TestBuffer/uuid/plain/optional
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/unordered
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/unordered/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/unordered/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/ascending
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/ascending/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/ascending/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/descending
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/descending/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/descending/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/descending/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/optional/descending/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/unordered
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/ascending
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/descending
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/required
#10 306.8 === RUN   TestBuffer/uuid/plain/required/unordered
#10 306.8 === RUN   TestBuffer/uuid/plain/required/unordered/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/required/unordered/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/required/unordered/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/required/unordered/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/required/ascending
#10 306.8 === RUN   TestBuffer/uuid/plain/required/ascending/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/required/ascending/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/required/ascending/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/required/ascending/#03
#10 306.8 === RUN   TestBuffer/uuid/plain/required/descending
#10 306.8 === RUN   TestBuffer/uuid/plain/required/descending/#00
#10 306.8 === RUN   TestBuffer/uuid/plain/required/descending/#01
#10 306.8 === RUN   TestBuffer/uuid/plain/required/descending/#02
#10 306.8 === RUN   TestBuffer/uuid/plain/required/descending/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/unordered
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/unordered/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/unordered/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/ascending
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/ascending/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/ascending/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/descending
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/descending/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/descending/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/descending/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/optional/descending/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/unordered
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/ascending
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/descending
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/required
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/unordered
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/unordered/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/unordered/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/unordered/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/unordered/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/ascending
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/ascending/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/ascending/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/ascending/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/ascending/#03
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/descending
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/descending/#00
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/descending/#01
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/descending/#02
#10 306.8 === RUN   TestBuffer/uuid/indexed/required/descending/#03
#10 306.8 === RUN   TestBuffer/uint32
#10 306.8 === RUN   TestBuffer/uint32/plain
#10 306.8 === RUN   TestBuffer/uint32/plain/optional
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/unordered
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/unordered/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/unordered/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/ascending
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/ascending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/ascending/#03
#10 306.8     buffer_test.go:590: "page" value at index 1 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/descending
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/descending/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/descending/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/descending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/optional/descending/#03
#10 306.8     buffer_test.go:590: "page" value at index 1 mismatches: want=32767 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/unordered
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/unordered/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/unordered/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/ascending
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/ascending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/ascending/#03
#10 306.8     buffer_test.go:562: max value mismatch: want=-1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/descending
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/descending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/repeated/descending/#03
#10 306.8     buffer_test.go:562: max value mismatch: want=-1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/required
#10 306.8 === RUN   TestBuffer/uint32/plain/required/unordered
#10 306.8 === RUN   TestBuffer/uint32/plain/required/unordered/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/required/unordered/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/required/unordered/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/required/unordered/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/required/ascending
#10 306.8 === RUN   TestBuffer/uint32/plain/required/ascending/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/required/ascending/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/required/ascending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/required/ascending/#03
#10 306.8     buffer_test.go:590: "page" value at index 1 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/required/descending
#10 306.8 === RUN   TestBuffer/uint32/plain/required/descending/#00
#10 306.8 === RUN   TestBuffer/uint32/plain/required/descending/#01
#10 306.8 === RUN   TestBuffer/uint32/plain/required/descending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/plain/required/descending/#03
#10 306.8     buffer_test.go:590: "page" value at index 1 mismatches: want=32767 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/unordered
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/unordered/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/unordered/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/ascending
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/ascending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/ascending/#03
#10 306.8     buffer_test.go:590: "page" value at index 1 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/descending
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/descending/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/descending/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/descending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/optional/descending/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=-1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/unordered
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/unordered/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/unordered/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/ascending
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/ascending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/ascending/#03
#10 306.8     buffer_test.go:562: max value mismatch: want=-1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/descending
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/descending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/repeated/descending/#03
#10 306.8     buffer_test.go:562: max value mismatch: want=-1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/required
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/unordered
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/unordered/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/unordered/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/unordered/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/unordered/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/ascending
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/ascending/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/ascending/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/ascending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/ascending/#03
#10 306.8     buffer_test.go:590: "page" value at index 1 mismatches: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/descending
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/descending/#00
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/descending/#01
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/descending/#02
#10 306.8     buffer_test.go:559: min value mismatch: want=1 got=0
#10 306.8 === RUN   TestBuffer/uint32/indexed/required/descending/#03
#10 306.8     buffer_test.go:590: "page" value at index 0 mismatches: want=-1 got=0
#10 306.8 === RUN   TestBuffer/uint64
#10 306.8 === RUN   TestBuffer/uint64/plain
#10 306.8 === RUN   TestBuffer/uint64/plain/optional
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/unordered
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/unordered/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/unordered/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/ascending
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/ascending/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/ascending/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/descending
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/descending/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/descending/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/descending/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/optional/descending/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/unordered
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/ascending
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/descending
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/required
#10 306.8 === RUN   TestBuffer/uint64/plain/required/unordered
#10 306.8 === RUN   TestBuffer/uint64/plain/required/unordered/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/required/unordered/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/required/unordered/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/required/unordered/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/required/ascending
#10 306.8 === RUN   TestBuffer/uint64/plain/required/ascending/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/required/ascending/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/required/ascending/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/required/ascending/#03
#10 306.8 === RUN   TestBuffer/uint64/plain/required/descending
#10 306.8 === RUN   TestBuffer/uint64/plain/required/descending/#00
#10 306.8 === RUN   TestBuffer/uint64/plain/required/descending/#01
#10 306.8 === RUN   TestBuffer/uint64/plain/required/descending/#02
#10 306.8 === RUN   TestBuffer/uint64/plain/required/descending/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/unordered
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/unordered/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/unordered/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/unordered/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/unordered/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/ascending
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/ascending/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/ascending/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/ascending/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/ascending/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/descending
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/descending/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/descending/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/descending/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/optional/descending/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/unordered
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/unordered/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/unordered/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/unordered/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/unordered/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/ascending
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/ascending/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/ascending/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/ascending/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/ascending/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/descending
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/descending/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/descending/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/descending/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/repeated/descending/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/required
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/unordered
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/unordered/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/unordered/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/unordered/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/unordered/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/ascending
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/ascending/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/ascending/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/ascending/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/ascending/#03
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/descending
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/descending/#00
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/descending/#01
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/descending/#02
#10 306.8 === RUN   TestBuffer/uint64/indexed/required/descending/#03
#10 306.8 --- FAIL: TestBuffer (0.23s)
#10 306.8     --- FAIL: TestBuffer/boolean (0.03s)
#10 306.8         --- FAIL: TestBuffer/boolean/plain (0.02s)
#10 306.8             --- FAIL: TestBuffer/boolean/plain/optional (0.01s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/boolean/plain/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/boolean/plain/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/plain/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/plain/required/descending/#03 (0.00s)
#10 306.8         --- FAIL: TestBuffer/boolean/indexed (0.01s)
#10 306.8             --- FAIL: TestBuffer/boolean/indexed/optional (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/boolean/indexed/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/boolean/indexed/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/boolean/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/boolean/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/boolean/indexed/required/descending/#03 (0.00s)
#10 306.8     --- FAIL: TestBuffer/int32 (0.02s)
#10 306.8         --- FAIL: TestBuffer/int32/plain (0.01s)
#10 306.8             --- FAIL: TestBuffer/int32/plain/optional (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/int32/plain/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/int32/plain/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/plain/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/plain/required/descending/#03 (0.00s)
#10 306.8         --- FAIL: TestBuffer/int32/indexed (0.01s)
#10 306.8             --- FAIL: TestBuffer/int32/indexed/optional (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/int32/indexed/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/int32/indexed/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/int32/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int32/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/int32/indexed/required/descending/#03 (0.00s)
#10 306.8     --- PASS: TestBuffer/int64 (0.02s)
#10 306.8         --- PASS: TestBuffer/int64/plain (0.01s)
#10 306.8             --- PASS: TestBuffer/int64/plain/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/int64/plain/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/int64/plain/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/plain/required/descending/#03 (0.00s)
#10 306.8         --- PASS: TestBuffer/int64/indexed (0.01s)
#10 306.8             --- PASS: TestBuffer/int64/indexed/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/int64/indexed/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/int64/indexed/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/int64/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/int64/indexed/required/descending/#03 (0.00s)
#10 306.8     --- FAIL: TestBuffer/float (0.02s)
#10 306.8         --- FAIL: TestBuffer/float/plain (0.01s)
#10 306.8             --- FAIL: TestBuffer/float/plain/optional (0.01s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/float/plain/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/float/plain/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/plain/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/plain/required/descending/#03 (0.00s)
#10 306.8         --- FAIL: TestBuffer/float/indexed (0.01s)
#10 306.8             --- FAIL: TestBuffer/float/indexed/optional (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/float/indexed/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/float/indexed/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/float/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/float/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/float/indexed/required/descending/#03 (0.00s)
#10 306.8     --- PASS: TestBuffer/double (0.02s)
#10 306.8         --- PASS: TestBuffer/double/plain (0.01s)
#10 306.8             --- PASS: TestBuffer/double/plain/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/double/plain/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/double/plain/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/plain/required/descending/#03 (0.00s)
#10 306.8         --- PASS: TestBuffer/double/indexed (0.01s)
#10 306.8             --- PASS: TestBuffer/double/indexed/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/double/indexed/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/double/indexed/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/double/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/double/indexed/required/descending/#03 (0.00s)
#10 306.8     --- PASS: TestBuffer/string (0.02s)
#10 306.8         --- PASS: TestBuffer/string/plain (0.01s)
#10 306.8             --- PASS: TestBuffer/string/plain/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/string/plain/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/string/plain/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/plain/required/descending/#03 (0.00s)
#10 306.8         --- PASS: TestBuffer/string/indexed (0.01s)
#10 306.8             --- PASS: TestBuffer/string/indexed/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/string/indexed/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/string/indexed/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/string/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/string/indexed/required/descending/#03 (0.00s)
#10 306.8     --- PASS: TestBuffer/fixed_length_byte_array (0.02s)
#10 306.8         --- PASS: TestBuffer/fixed_length_byte_array/plain (0.01s)
#10 306.8             --- PASS: TestBuffer/fixed_length_byte_array/plain/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/fixed_length_byte_array/plain/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/plain/required/descending/#03 (0.00s)
#10 306.8         --- PASS: TestBuffer/fixed_length_byte_array/indexed (0.01s)
#10 306.8             --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/fixed_length_byte_array/indexed/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/fixed_length_byte_array/indexed/required/descending/#03 (0.00s)
#10 306.8     --- PASS: TestBuffer/uuid (0.02s)
#10 306.8         --- PASS: TestBuffer/uuid/plain (0.01s)
#10 306.8             --- PASS: TestBuffer/uuid/plain/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uuid/plain/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uuid/plain/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/plain/required/descending/#03 (0.00s)
#10 306.8         --- PASS: TestBuffer/uuid/indexed (0.01s)
#10 306.8             --- PASS: TestBuffer/uuid/indexed/optional (0.01s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uuid/indexed/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uuid/indexed/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uuid/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uuid/indexed/required/descending/#03 (0.00s)
#10 306.8     --- FAIL: TestBuffer/uint32 (0.03s)
#10 306.8         --- FAIL: TestBuffer/uint32/plain (0.01s)
#10 306.8             --- FAIL: TestBuffer/uint32/plain/optional (0.01s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/uint32/plain/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/uint32/plain/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/plain/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/plain/required/descending/#03 (0.00s)
#10 306.8         --- FAIL: TestBuffer/uint32/indexed (0.01s)
#10 306.8             --- FAIL: TestBuffer/uint32/indexed/optional (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/uint32/indexed/repeated (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- FAIL: TestBuffer/uint32/indexed/required (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- FAIL: TestBuffer/uint32/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint32/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- FAIL: TestBuffer/uint32/indexed/required/descending/#03 (0.00s)
#10 306.8     --- PASS: TestBuffer/uint64 (0.02s)
#10 306.8         --- PASS: TestBuffer/uint64/plain (0.01s)
#10 306.8             --- PASS: TestBuffer/uint64/plain/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uint64/plain/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uint64/plain/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/plain/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/plain/required/descending/#03 (0.00s)
#10 306.8         --- PASS: TestBuffer/uint64/indexed (0.01s)
#10 306.8             --- PASS: TestBuffer/uint64/indexed/optional (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/optional/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/optional/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/optional/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/optional/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uint64/indexed/repeated (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/repeated/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/repeated/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/repeated/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/repeated/descending/#03 (0.00s)
#10 306.8             --- PASS: TestBuffer/uint64/indexed/required (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/required/unordered (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/unordered/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/unordered/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/unordered/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/unordered/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/required/ascending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/ascending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/ascending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/ascending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/ascending/#03 (0.00s)
#10 306.8                 --- PASS: TestBuffer/uint64/indexed/required/descending (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/descending/#00 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/descending/#01 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/descending/#02 (0.00s)
#10 306.8                     --- PASS: TestBuffer/uint64/indexed/required/descending/#03 (0.00s)
#10 306.8 === RUN   TestBufferGenerateBloomFilters
#10 307.1 --- PASS: TestBufferGenerateBloomFilters (0.24s)
#10 307.1 === RUN   TestBufferRoundtripNestedRepeated
#10 307.1     buffer_test.go:732: points mismatch at row index 0: want={[{[{0} {0}]}]} got=&{[{[{0}]}]}
#10 307.1     buffer_test.go:732: points mismatch at row index 1: want={[{[{1} {1}]}]} got=&{[{[{0} {1}]}]}
#10 307.1     buffer_test.go:732: points mismatch at row index 2: want={[{[{2} {2}]}]} got=&{[{[{1} {2}]}]}
#10 307.1     buffer_test.go:732: points mismatch at row index 3: want={[{[{3} {3}]}]} got=&{[{[{2} {3}]}]}
#10 307.1     buffer_test.go:732: points mismatch at row index 4: want={[{[{4} {4}]}]} got=&{[{[{3}]}]}
#10 307.1     buffer_test.go:732: points mismatch at row index 5: want={[{[{5} {5}]}]} got=&{[{[{4} {4}]}]}
#10 307.1 --- FAIL: TestBufferRoundtripNestedRepeated (0.01s)
#10 307.1 === RUN   TestBufferRoundtripNestedRepeatedPointer
#10 307.1     buffer_test.go:776: points mismatch at row index 0: want={[{[{0xc00050e3b8} {<nil>}]}]} got=&{[{[{<nil>}]}]}
#10 307.1     buffer_test.go:776: points mismatch at row index 1: want={[{[{0xc00050e3f8} {<nil>}]}]} got=&{[{[{0xc00050e580} {<nil>}]}]}
#10 307.1     buffer_test.go:776: points mismatch at row index 2: want={[{[{0xc00050e400} {<nil>}]}]} got=&{[{[{0xc00050e598} {<nil>}]}]}
#10 307.1     buffer_test.go:776: points mismatch at row index 3: want={[{[{0xc00050e408} {<nil>}]}]} got=&{[{[{0xc00050e5b0} {<nil>}]}]}
#10 307.1     buffer_test.go:776: points mismatch at row index 4: want={[{[{0xc00050e410} {<nil>}]}]} got=&{[{[{0xc00050e5c8}]}]}
#10 307.1     buffer_test.go:776: points mismatch at row index 5: want={[{[{0xc00050e418} {<nil>}]}]} got=&{[{[{0xc00050e5e0} {<nil>}]}]}
#10 307.1 --- FAIL: TestBufferRoundtripNestedRepeatedPointer (0.00s)
#10 307.1 === RUN   TestRoundtripNestedRepeatedBytes
#10 307.1     buffer_test.go:821: points mismatch at row index 1: want={test1 [{[1]}]} got=&{ [{[]}]}
#10 307.1 --- FAIL: TestRoundtripNestedRepeatedBytes (0.00s)
#10 307.1 === RUN   TestBufferSeekToRow
#10 307.1     buffer_test.go:863: decoding page 0 of column "B.C": DELTA_LENGTH_BYTE_ARRAY: invalid negative value length: -1
#10 307.1 --- FAIL: TestBufferSeekToRow (0.01s)
#10 307.1 === RUN   TestOptionalDictWriteRowGroup
#10 307.1 --- PASS: TestOptionalDictWriteRowGroup (0.00s)
#10 307.1 === RUN   TestNullsSortFirst
#10 307.1 --- PASS: TestNullsSortFirst (0.00s)
#10 307.1 === RUN   TestBinaryColumnIndexMinMax
#10 307.1 --- PASS: TestBinaryColumnIndexMinMax (0.00s)
#10 307.1 === RUN   TestColumnPageIndex
#10 307.1 === RUN   TestColumnPageIndex/buffer
#10 307.1 === RUN   TestColumnPageIndex/buffer/boolean
#10 307.1 === RUN   TestColumnPageIndex/buffer/int32
#10 307.2 === RUN   TestColumnPageIndex/buffer/int64
#10 307.2 === RUN   TestColumnPageIndex/buffer/int96
#10 307.3 === RUN   TestColumnPageIndex/buffer/uint32
#10 307.4 === RUN   TestColumnPageIndex/buffer/uint64
#10 307.4 === RUN   TestColumnPageIndex/buffer/float32
#10 307.4 === RUN   TestColumnPageIndex/buffer/float64
#10 307.5 === RUN   TestColumnPageIndex/buffer/string
#10 307.6 === RUN   TestColumnPageIndex/buffer/uuid
#10 307.6 === RUN   TestColumnPageIndex/file
#10 307.6 === RUN   TestColumnPageIndex/file/boolean
#10 307.7 === RUN   TestColumnPageIndex/file/int32
#10 307.8 === RUN   TestColumnPageIndex/file/int64
#10 307.8     column_test.go:276: checking column index of row group @i=0: column chunk @i=0: page @i=0: max page value mismatch: index="-507792729275629568" page="888534008"
#10 307.8     column_test.go:105: test #1: failed on input of size 1: []struct { Value int64 }{struct { Value int64 }{Value:888534008}}
#10 307.8         
#10 307.8 === RUN   TestColumnPageIndex/file/int96
#10 307.8     column_test.go:276: checking column index of row group @i=0: column chunk @i=0: page @i=0: max page value mismatch: index="35833082224837093243284159938" page="24583244229150162040035054593"
#10 307.8     column_test.go:105: test #1: failed on input of size 1: []struct { Value deprecated.Int96 }{struct { Value deprecated.Int96 }{Value:deprecated.Int96{0xc2fd9401, 0xffd341c0, 0x4f6ec873}}}
#10 307.8         
#10 307.8 === RUN   TestColumnPageIndex/file/uint32
#10 308.0 === RUN   TestColumnPageIndex/file/uint64
#10 308.0     column_test.go:276: checking column index of row group @i=0: column chunk @i=0: page @i=0: max page value mismatch: index="113994904454036600" page="8717895732742165505"
#10 308.0     column_test.go:105: test #1: failed on input of size 1: []struct { Value uint64 }{struct { Value uint64 }{Value:0x78fc2ffac2fd9401}}
#10 308.0         
#10 308.0 === RUN   TestColumnPageIndex/file/float32
#10 308.1 === RUN   TestColumnPageIndex/file/float64
#10 308.1     column_test.go:276: checking column index of row group @i=0: column chunk @i=0: page @i=0: max page value mismatch: index="1.3150385978334187e+182" page="0.9451961492941164"
#10 308.1     column_test.go:105: test #1: failed on input of size 1: []struct { Value float64 }{struct { Value float64 }{Value:0.9451961492941164}}
#10 308.1         
#10 308.1 === RUN   TestColumnPageIndex/file/string
#10 308.1     column_test.go:276: checking column index of row group @i=0: column chunk @i=0: page @i=0: max page value mismatch: index="12345" page="1"
#10 308.1     column_test.go:105: test #1: failed on input of size 2: []struct { Value string }{struct { Value string }{Value:"123456"}, struct { Value string }{Value:"12345"}}
#10 308.1         
#10 308.1 === RUN   TestColumnPageIndex/file/uuid
#10 308.5 --- FAIL: TestColumnPageIndex (1.37s)
#10 308.5     --- PASS: TestColumnPageIndex/buffer (0.53s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/boolean (0.04s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/int32 (0.04s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/int64 (0.04s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/int96 (0.09s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/uint32 (0.04s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/uint64 (0.04s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/float32 (0.04s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/float64 (0.05s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/string (0.07s)
#10 308.5         --- PASS: TestColumnPageIndex/buffer/uuid (0.09s)
#10 308.5     --- FAIL: TestColumnPageIndex/file (0.83s)
#10 308.5         --- PASS: TestColumnPageIndex/file/boolean (0.06s)
#10 308.5         --- PASS: TestColumnPageIndex/file/int32 (0.13s)
#10 308.5         --- FAIL: TestColumnPageIndex/file/int64 (0.00s)
#10 308.5         --- FAIL: TestColumnPageIndex/file/int96 (0.00s)
#10 308.5         --- PASS: TestColumnPageIndex/file/uint32 (0.13s)
#10 308.5         --- FAIL: TestColumnPageIndex/file/uint64 (0.00s)
#10 308.5         --- PASS: TestColumnPageIndex/file/float32 (0.13s)
#10 308.5         --- FAIL: TestColumnPageIndex/file/float64 (0.00s)
#10 308.5         --- FAIL: TestColumnPageIndex/file/string (0.00s)
#10 308.5         --- PASS: TestColumnPageIndex/file/uuid (0.36s)
#10 308.5 === RUN   TestConvert
#10 308.5 === RUN   TestConvert/convert_between_rows_which_have_the_same_schema
#10 308.5 === RUN   TestConvert/missing_column
#10 308.5 === RUN   TestConvert/missing_optional_column
#10 308.5 === RUN   TestConvert/missing_repeated_column
#10 308.5 === RUN   TestConvert/extra_column
#10 308.5 === RUN   TestConvert/extra_optional_column
#10 308.5 === RUN   TestConvert/extra_repeated_column
#10 308.5 === RUN   TestConvert/extra_required_column_from_repeated
#10 308.5 === RUN   TestConvert/extra_fields_in_repeated_group
#10 308.5 === RUN   TestConvert/extra_column_on_complex_struct
#10 308.5 === RUN   TestConvert/required_to_optional_leaf
#10 308.5 === RUN   TestConvert/required_to_repeated_leaf
#10 308.5 === RUN   TestConvert/optional_to_required_leaf
#10 308.5 === RUN   TestConvert/optional_to_repeated_leaf
#10 308.5 === RUN   TestConvert/optional_to_repeated_leaf_(null)
#10 308.5 === RUN   TestConvert/repeated_to_required_leaf
#10 308.5 === RUN   TestConvert/repeated_to_optional_leaf
#10 308.5 === RUN   TestConvert/required_to_optional_group
#10 308.5 === RUN   TestConvert/required_to_optional_group_(empty)
#10 308.5 === RUN   TestConvert/optional_to_required_group_(null)
#10 308.5 === RUN   TestConvert/optional_to_repeated_group_(null)
#10 308.5 === RUN   TestConvert/optional_to_repeated_optional_group_(null)
#10 308.5 === RUN   TestConvert/handle_nested_repeated_elements_during_conversion
#10 308.5 === RUN   TestConvert/handle_nested_repeated_elements_during_conversion#01
#10 308.5 --- PASS: TestConvert (0.01s)
#10 308.5     --- PASS: TestConvert/convert_between_rows_which_have_the_same_schema (0.00s)
#10 308.5     --- PASS: TestConvert/missing_column (0.00s)
#10 308.5     --- PASS: TestConvert/missing_optional_column (0.00s)
#10 308.5     --- PASS: TestConvert/missing_repeated_column (0.00s)
#10 308.5     --- PASS: TestConvert/extra_column (0.00s)
#10 308.5     --- PASS: TestConvert/extra_optional_column (0.00s)
#10 308.5     --- PASS: TestConvert/extra_repeated_column (0.00s)
#10 308.5     --- PASS: TestConvert/extra_required_column_from_repeated (0.00s)
#10 308.5     --- PASS: TestConvert/extra_fields_in_repeated_group (0.00s)
#10 308.5     --- PASS: TestConvert/extra_column_on_complex_struct (0.00s)
#10 308.5     --- PASS: TestConvert/required_to_optional_leaf (0.00s)
#10 308.5     --- PASS: TestConvert/required_to_repeated_leaf (0.00s)
#10 308.5     --- PASS: TestConvert/optional_to_required_leaf (0.00s)
#10 308.5     --- PASS: TestConvert/optional_to_repeated_leaf (0.00s)
#10 308.5     --- PASS: TestConvert/optional_to_repeated_leaf_(null) (0.00s)
#10 308.5     --- PASS: TestConvert/repeated_to_required_leaf (0.00s)
#10 308.5     --- PASS: TestConvert/repeated_to_optional_leaf (0.00s)
#10 308.5     --- PASS: TestConvert/required_to_optional_group (0.00s)
#10 308.5     --- PASS: TestConvert/required_to_optional_group_(empty) (0.00s)
#10 308.5     --- PASS: TestConvert/optional_to_required_group_(null) (0.00s)
#10 308.5     --- PASS: TestConvert/optional_to_repeated_group_(null) (0.00s)
#10 308.5     --- PASS: TestConvert/optional_to_repeated_optional_group_(null) (0.00s)
#10 308.5     --- PASS: TestConvert/handle_nested_repeated_elements_during_conversion (0.00s)
#10 308.5     --- PASS: TestConvert/handle_nested_repeated_elements_during_conversion#01 (0.00s)
#10 308.5 === RUN   TestConvertValue
#10 308.5 === RUN   TestConvertValue/true_to_boolean
#10 308.5 === RUN   TestConvertValue/true_to_int32
#10 308.5 === RUN   TestConvertValue/true_to_int64
#10 308.5 === RUN   TestConvertValue/true_to_int96
#10 308.5 === RUN   TestConvertValue/true_to_float
#10 308.5 === RUN   TestConvertValue/true_to_double
#10 308.5 === RUN   TestConvertValue/true_to_byte_array
#10 308.5 === RUN   TestConvertValue/true_to_fixed_length_byte_array
#10 308.5 === RUN   TestConvertValue/true_to_string
#10 308.5 === RUN   TestConvertValue/false_to_boolean
#10 308.5 === RUN   TestConvertValue/false_to_int32
#10 308.5 === RUN   TestConvertValue/false_to_int64
#10 308.5 === RUN   TestConvertValue/false_to_int96
#10 308.5 === RUN   TestConvertValue/false_to_float
#10 308.5 === RUN   TestConvertValue/false_to_double
#10 308.5 === RUN   TestConvertValue/false_to_byte_array
#10 308.5 === RUN   TestConvertValue/false_to_fixed_length_byte_array
#10 308.5 === RUN   TestConvertValue/false_to_string
#10 308.5 === RUN   TestConvertValue/int32_to_true
#10 308.5 === RUN   TestConvertValue/int32_to_false
#10 308.5 === RUN   TestConvertValue/int32_to_int32
#10 308.5 === RUN   TestConvertValue/int32_to_int64
#10 308.5 === RUN   TestConvertValue/int32_to_int96
#10 308.5 === RUN   TestConvertValue/int32_to_float
#10 308.5 === RUN   TestConvertValue/int32_to_double
#10 308.5 === RUN   TestConvertValue/int32_to_byte_array
#10 308.5 === RUN   TestConvertValue/int32_to_fixed_length_byte_array
#10 308.5 === RUN   TestConvertValue/int32_to_string
#10 308.5 === RUN   TestConvertValue/int64_to_true
#10 308.5 === RUN   TestConvertValue/int64_to_false
#10 308.5 === RUN   TestConvertValue/int64_to_int32
#10 308.5 === RUN   TestConvertValue/int64_to_int64
#10 308.5 === RUN   TestConvertValue/int64_to_int96
#10 308.5 === RUN   TestConvertValue/int64_to_float
#10 308.5 === RUN   TestConvertValue/int64_to_double
#10 308.5 === RUN   TestConvertValue/int64_to_byte_array
#10 308.5 === RUN   TestConvertValue/int64_to_fixed_length_byte_array
#10 308.5 === RUN   TestConvertValue/int64_to_string
#10 308.5 === RUN   TestConvertValue/float_to_true
#10 308.5 === RUN   TestConvertValue/float_to_false
#10 308.5 === RUN   TestConvertValue/float_to_int32
#10 308.5 === RUN   TestConvertValue/float_to_int64
#10 308.5 === RUN   TestConvertValue/float_to_float
#10 308.5 === RUN   TestConvertValue/float_to_double
#10 308.5 === RUN   TestConvertValue/float_to_string
#10 308.5 === RUN   TestConvertValue/double_to_true
#10 308.5 === RUN   TestConvertValue/double_to_false
#10 308.5 === RUN   TestConvertValue/double_to_int32
#10 308.5 === RUN   TestConvertValue/double_to_int64
#10 308.5 === RUN   TestConvertValue/double_to_float
#10 308.5 === RUN   TestConvertValue/double_to_double
#10 308.5 === RUN   TestConvertValue/double_to_string
#10 308.5 === RUN   TestConvertValue/string_to_true
#10 308.5 === RUN   TestConvertValue/string_to_false
#10 308.5 === RUN   TestConvertValue/string_to_int32
#10 308.5 === RUN   TestConvertValue/string_to_int64
#10 308.5 === RUN   TestConvertValue/string_to_int96
#10 308.5     convert_test.go:1188: converted value mismatch:
#10 308.5         want = C:3 D:2 R:1 V:123
#10 308.5         got  = C:3 D:2 R:1 V:2063597568
#10 308.5 === RUN   TestConvertValue/string_to_float
#10 308.5 === RUN   TestConvertValue/string_to_double
#10 308.5 === RUN   TestConvertValue/string_to_byte_array
#10 308.5 === RUN   TestConvertValue/string_to_fixed_length_byte_array
#10 308.5 === RUN   TestConvertValue/string_to_string
#10 308.5 === RUN   TestConvertValue/string_to_date
#10 308.5 === RUN   TestConvertValue/string_to_millisecond_time
#10 308.5 === RUN   TestConvertValue/string_to_microsecond_time
#10 308.5 === RUN   TestConvertValue/date_to_millisecond_timestamp
#10 308.5 === RUN   TestConvertValue/date_to_microsecond_timestamp
#10 308.5 === RUN   TestConvertValue/date_to_string
#10 308.5 === RUN   TestConvertValue/millisecond_time_to_string
#10 308.5 === RUN   TestConvertValue/microsecond_time_to_string
#10 308.5 === RUN   TestConvertValue/millisecond_timestamp_to_date
#10 308.5 === RUN   TestConvertValue/microsecond_timestamp_to_date
#10 308.5 === RUN   TestConvertValue/millisecond_timestamp_to_millisecond_time
#10 308.5 === RUN   TestConvertValue/millisecond_timestamp_to_micronsecond_time
#10 308.5 === RUN   TestConvertValue/microsecond_timestamp_to_millisecond_time
#10 308.5 === RUN   TestConvertValue/microsecond_timestamp_to_micronsecond_time
#10 308.5 === RUN   TestConvertValue/micros_to_nanos
#10 308.5 === RUN   TestConvertValue/millis_to_nanos
#10 308.5 === RUN   TestConvertValue/nanos_to_micros
#10 308.5 === RUN   TestConvertValue/nanos_to_nanos
#10 308.5 === RUN   TestConvertValue/int64_to_nanos
#10 308.5 === RUN   TestConvertValue/int64_to_int64#01
#10 308.5 --- FAIL: TestConvertValue (0.03s)
#10 308.5     --- PASS: TestConvertValue/true_to_boolean (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_int64 (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_int96 (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_fixed_length_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/true_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_boolean (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_int64 (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_int96 (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_fixed_length_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/false_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_true (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_false (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_int64 (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_int96 (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_fixed_length_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/int32_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_true (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_false (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_int64 (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_int96 (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_fixed_length_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_true (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_false (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_int64 (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/float_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_true (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_false (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_int64 (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/double_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_true (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_false (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_int32 (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_int64 (0.00s)
#10 308.5     --- FAIL: TestConvertValue/string_to_int96 (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_float (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_double (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_fixed_length_byte_array (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_date (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_millisecond_time (0.00s)
#10 308.5     --- PASS: TestConvertValue/string_to_microsecond_time (0.00s)
#10 308.5     --- PASS: TestConvertValue/date_to_millisecond_timestamp (0.00s)
#10 308.5     --- PASS: TestConvertValue/date_to_microsecond_timestamp (0.00s)
#10 308.5     --- PASS: TestConvertValue/date_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/millisecond_time_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/microsecond_time_to_string (0.00s)
#10 308.5     --- PASS: TestConvertValue/millisecond_timestamp_to_date (0.00s)
#10 308.5     --- PASS: TestConvertValue/microsecond_timestamp_to_date (0.00s)
#10 308.5     --- PASS: TestConvertValue/millisecond_timestamp_to_millisecond_time (0.00s)
#10 308.5     --- PASS: TestConvertValue/millisecond_timestamp_to_micronsecond_time (0.00s)
#10 308.5     --- PASS: TestConvertValue/microsecond_timestamp_to_millisecond_time (0.00s)
#10 308.5     --- PASS: TestConvertValue/microsecond_timestamp_to_micronsecond_time (0.00s)
#10 308.5     --- PASS: TestConvertValue/micros_to_nanos (0.00s)
#10 308.5     --- PASS: TestConvertValue/millis_to_nanos (0.00s)
#10 308.5     --- PASS: TestConvertValue/nanos_to_micros (0.00s)
#10 308.5     --- PASS: TestConvertValue/nanos_to_nanos (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_nanos (0.00s)
#10 308.5     --- PASS: TestConvertValue/int64_to_int64#01 (0.00s)
#10 308.5 === RUN   TestDedupeRowReader
#10 308.5 --- PASS: TestDedupeRowReader (0.01s)
#10 308.5 === RUN   TestDedupeRowWriter
#10 308.5 --- PASS: TestDedupeRowWriter (0.00s)
#10 308.5 === RUN   TestDictionary
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=1
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=2
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=3
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=4
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=5
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=6
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=7
#10 308.5     dictionary_test.go:119: wrong upper bound between indexes 0 and 4: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=8
#10 308.5     dictionary_test.go:119: wrong upper bound between indexes 0 and 5: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=9
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=10
#10 308.5     dictionary_test.go:119: wrong upper bound between indexes 0 and 6: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5     dictionary_test.go:119: wrong upper bound between indexes 6 and 9: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=17
#10 308.5     dictionary_test.go:119: wrong upper bound between indexes 0 and 9: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=100
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=1000
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/BOOLEAN/N=10000
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.BooleanValue(true).Level(0,0,1) got=parquet.BooleanValue(false).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=1
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1298498081).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=2
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(569199786).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=3
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1401513977).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=4
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(740241013).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=5
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(2103214489).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=6
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(596709022).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=7
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1957564863).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=8
#10 308.5     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1638220396).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.5 === RUN   TestDictionary/INT32/N=9
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(174430245).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/INT32/N=10
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1968614344).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/INT32/N=17
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1876413744).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/INT32/N=100
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(200570400).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/INT32/N=1000
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(103839925).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/INT32/N=10000
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(646650535).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/INT64/N=1
#10 308.6 === RUN   TestDictionary/INT64/N=2
#10 308.6 === RUN   TestDictionary/INT64/N=3
#10 308.6 === RUN   TestDictionary/INT64/N=4
#10 308.6 === RUN   TestDictionary/INT64/N=5
#10 308.6 === RUN   TestDictionary/INT64/N=6
#10 308.6 === RUN   TestDictionary/INT64/N=7
#10 308.6 === RUN   TestDictionary/INT64/N=8
#10 308.6 === RUN   TestDictionary/INT64/N=9
#10 308.6 === RUN   TestDictionary/INT64/N=10
#10 308.6 === RUN   TestDictionary/INT64/N=17
#10 308.6 === RUN   TestDictionary/INT64/N=100
#10 308.6 === RUN   TestDictionary/INT64/N=1000
#10 308.6 === RUN   TestDictionary/INT64/N=10000
#10 308.6 === RUN   TestDictionary/INT96/N=1
#10 308.6 === RUN   TestDictionary/INT96/N=2
#10 308.6 === RUN   TestDictionary/INT96/N=3
#10 308.6 === RUN   TestDictionary/INT96/N=4
#10 308.6 === RUN   TestDictionary/INT96/N=5
#10 308.6 === RUN   TestDictionary/INT96/N=6
#10 308.6 === RUN   TestDictionary/INT96/N=7
#10 308.6 === RUN   TestDictionary/INT96/N=8
#10 308.6 === RUN   TestDictionary/INT96/N=9
#10 308.6 === RUN   TestDictionary/INT96/N=10
#10 308.6 === RUN   TestDictionary/INT96/N=17
#10 308.6 === RUN   TestDictionary/INT96/N=100
#10 308.6 === RUN   TestDictionary/INT96/N=1000
#10 308.6 === RUN   TestDictionary/INT96/N=10000
#10 308.6 === RUN   TestDictionary/FLOAT/N=1
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.6046603).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/FLOAT/N=2
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.26505432).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/FLOAT/N=3
#10 308.6     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.6526308).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.6 === RUN   TestDictionary/FLOAT/N=4
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.3447016).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=5
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.97938555).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=6
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.27786428).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=7
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.91156214).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=8
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.7628558).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=9
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.08122541).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=10
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.9167075).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=17
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.8737732).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=100
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.09339787).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=1000
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.048354235).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/FLOAT/N=10000
#10 308.7     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.FloatValue(0.30112013).Level(0,0,1) got=parquet.FloatValue(0).Level(0,0,1)
#10 308.7 === RUN   TestDictionary/DOUBLE/N=1
#10 308.7 === RUN   TestDictionary/DOUBLE/N=2
#10 308.7 === RUN   TestDictionary/DOUBLE/N=3
#10 308.7 === RUN   TestDictionary/DOUBLE/N=4
#10 308.7 === RUN   TestDictionary/DOUBLE/N=5
#10 308.7 === RUN   TestDictionary/DOUBLE/N=6
#10 308.7 === RUN   TestDictionary/DOUBLE/N=7
#10 308.7 === RUN   TestDictionary/DOUBLE/N=8
#10 308.7 === RUN   TestDictionary/DOUBLE/N=9
#10 308.7 === RUN   TestDictionary/DOUBLE/N=10
#10 308.7 === RUN   TestDictionary/DOUBLE/N=17
#10 308.7 === RUN   TestDictionary/DOUBLE/N=100
#10 308.7 === RUN   TestDictionary/DOUBLE/N=1000
#10 308.7 === RUN   TestDictionary/DOUBLE/N=10000
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=1
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=2
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=3
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=4
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=5
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=6
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=7
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=8
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=9
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=10
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=17
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=100
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=1000
#10 308.7 === RUN   TestDictionary/BYTE_ARRAY/N=10000
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=1
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=2
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=3
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=4
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=5
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=6
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=7
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=8
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=9
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=10
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=17
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=100
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=1000
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=10000
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=1
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=2
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=3
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=4
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=5
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=6
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=7
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=8
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=9
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=10
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=17
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=100
#10 308.8 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=1000
#10 308.9 === RUN   TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=10000
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=1
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1298498081).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=2
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(569199786).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=3
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1401513977).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=4
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(740241013).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=5
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(2103214489).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=6
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(596709022).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=7
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1957564863).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=8
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1638220396).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=9
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(174430245).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=10
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1968614344).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=17
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(1876413744).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=100
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(200570400).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=1000
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(103839925).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(32,false)/N=10000
#10 308.9     dictionary_test.go:98: wrong value looked up at index 0: want=parquet.Int32Value(646650535).Level(0,0,1) got=parquet.Int32Value(0).Level(0,0,1)
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=1
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=2
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=3
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=4
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=5
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=6
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=7
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=8
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=9
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=10
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=17
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=100
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=1000
#10 308.9 === RUN   TestDictionary/INT(64,false)/N=10000
#10 308.9 --- FAIL: TestDictionary (0.41s)
#10 308.9     --- PASS: TestDictionary/BOOLEAN/N=1 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/BOOLEAN/N=3 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=4 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=5 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=6 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=7 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=8 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=9 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=10 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=17 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=100 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=1000 (0.00s)
#10 308.9     --- FAIL: TestDictionary/BOOLEAN/N=10000 (0.01s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=1 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=2 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=3 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=4 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=5 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=6 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=7 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=8 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=9 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=10 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=17 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=100 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=1000 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT32/N=10000 (0.01s)
#10 308.9     --- PASS: TestDictionary/INT64/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=1000 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT64/N=10000 (0.02s)
#10 308.9     --- PASS: TestDictionary/INT96/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT96/N=1000 (0.01s)
#10 308.9     --- PASS: TestDictionary/INT96/N=10000 (0.05s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=1 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=2 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=3 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=4 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=5 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=6 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=7 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=8 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=9 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=10 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=17 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=100 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=1000 (0.00s)
#10 308.9     --- FAIL: TestDictionary/FLOAT/N=10000 (0.01s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=1000 (0.00s)
#10 308.9     --- PASS: TestDictionary/DOUBLE/N=10000 (0.02s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=1000 (0.01s)
#10 308.9     --- PASS: TestDictionary/BYTE_ARRAY/N=10000 (0.07s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=1000 (0.01s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(10)/N=10000 (0.06s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=1000 (0.00s)
#10 308.9     --- PASS: TestDictionary/FIXED_LEN_BYTE_ARRAY(16)/N=10000 (0.05s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=1 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=2 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=3 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=4 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=5 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=6 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=7 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=8 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=9 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=10 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=17 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=100 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=1000 (0.00s)
#10 308.9     --- FAIL: TestDictionary/INT(32,false)/N=10000 (0.01s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=1 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=2 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=3 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=4 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=5 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=6 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=7 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=8 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=9 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=10 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=17 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=100 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=1000 (0.00s)
#10 308.9     --- PASS: TestDictionary/INT(64,false)/N=10000 (0.02s)
#10 308.9 === RUN   TestIssue312
#10 308.9 === RUN   TestIssue312/Writer
#10 308.9 === RUN   TestIssue312/Buffer
#10 308.9 --- PASS: TestIssue312 (0.00s)
#10 308.9     --- PASS: TestIssue312/Writer (0.00s)
#10 308.9     --- PASS: TestIssue312/Buffer (0.00s)
#10 308.9 === RUN   TestOpenFile
#10 308.9 === RUN   TestOpenFile/testdata/alltypes_dictionary.parquet
#10 308.9     file_test.go:48: message schema {
#10 308.9         	optional int32 id;
#10 308.9         	optional boolean bool_col;
#10 308.9         	optional int32 tinyint_col;
#10 308.9         	optional int32 smallint_col;
#10 308.9         	optional int32 int_col;
#10 308.9         	optional int64 bigint_col;
#10 308.9         	optional float float_col;
#10 308.9         	optional double double_col;
#10 308.9         	optional binary date_string_col;
#10 308.9         	optional binary string_col;
#10 308.9         	optional int96 timestamp_col;
#10 308.9         }
#10 308.9     file_test.go:64: 
#10 308.9     file_test.go:62: . id PLAIN_DICTIONARY UNCOMPRESSED
#10 308.9     file_test.go:62: . bool_col PLAIN_DICTIONARY UNCOMPRESSED
#10 308.9     file_test.go:62: . tinyint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . smallint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . int_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . bigint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . float_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . double_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . date_string_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . string_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . timestamp_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0 === RUN   TestOpenFile/testdata/alltypes_plain.parquet
#10 309.0     file_test.go:48: message schema {
#10 309.0         	optional int32 id;
#10 309.0         	optional boolean bool_col;
#10 309.0         	optional int32 tinyint_col;
#10 309.0         	optional int32 smallint_col;
#10 309.0         	optional int32 int_col;
#10 309.0         	optional int64 bigint_col;
#10 309.0         	optional float float_col;
#10 309.0         	optional double double_col;
#10 309.0         	optional binary date_string_col;
#10 309.0         	optional binary string_col;
#10 309.0         	optional int96 timestamp_col;
#10 309.0         }
#10 309.0     file_test.go:64: 
#10 309.0     file_test.go:62: . id PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . bool_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . tinyint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . smallint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . int_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . bigint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . float_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . double_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . date_string_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . string_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . timestamp_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0 === RUN   TestOpenFile/testdata/alltypes_plain.snappy.parquet
#10 309.0     file_test.go:48: message schema {
#10 309.0         	optional int32 id;
#10 309.0         	optional boolean bool_col;
#10 309.0         	optional int32 tinyint_col;
#10 309.0         	optional int32 smallint_col;
#10 309.0         	optional int32 int_col;
#10 309.0         	optional int64 bigint_col;
#10 309.0         	optional float float_col;
#10 309.0         	optional double double_col;
#10 309.0         	optional binary date_string_col;
#10 309.0         	optional binary string_col;
#10 309.0         	optional int96 timestamp_col;
#10 309.0         }
#10 309.0     file_test.go:64: 
#10 309.0     file_test.go:62: . id PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . bool_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . tinyint_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . smallint_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . int_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . bigint_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . float_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . double_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . date_string_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . string_col PLAIN_DICTIONARY SNAPPY
#10 309.0     file_test.go:62: . timestamp_col PLAIN_DICTIONARY SNAPPY
#10 309.0 === RUN   TestOpenFile/testdata/alltypes_tiny_pages.parquet
#10 309.0     file_test.go:48: message hive_schema {
#10 309.0         	optional int32 id;
#10 309.0         	optional boolean bool_col;
#10 309.0         	optional int32 tinyint_col (INT(8,true));
#10 309.0         	optional int32 smallint_col (INT(16,true));
#10 309.0         	optional int32 int_col;
#10 309.0         	optional int64 bigint_col;
#10 309.0         	optional float float_col;
#10 309.0         	optional double double_col;
#10 309.0         	optional binary date_string_col (STRING);
#10 309.0         	optional binary string_col (STRING);
#10 309.0         	optional int96 timestamp_col;
#10 309.0         	optional int32 year;
#10 309.0         	optional int32 month;
#10 309.0         }
#10 309.0     file_test.go:64: 
#10 309.0     file_test.go:62: . id BIT_PACKED UNCOMPRESSED
#10 309.0     file_test.go:62: . bool_col BIT_PACKED UNCOMPRESSED
#10 309.0     file_test.go:62: . tinyint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . smallint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . int_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . bigint_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . float_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . double_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0     file_test.go:62: . date_string_col PLAIN_DICTIONARY UNCOMPRESSED
#10 309.0 --- FAIL: TestOpenFile (0.09s)
#10 309.0     --- PASS: TestOpenFile/testdata/alltypes_dictionary.parquet (0.01s)
#10 309.0     --- PASS: TestOpenFile/testdata/alltypes_plain.parquet (0.00s)
#10 309.0     --- PASS: TestOpenFile/testdata/alltypes_plain.snappy.parquet (0.00s)
#10 309.0     --- FAIL: TestOpenFile/testdata/alltypes_tiny_pages.parquet (0.07s)
#10 309.0 panic: runtime error: index out of range [620756992] with length 731 [recovered]
#10 309.0 	panic: runtime error: index out of range [620756992] with length 731
#10 309.0 
#10 309.0 goroutine 1465 [running]:
#10 309.0 testing.tRunner.func1.2({0x8127a0, 0xc0001e6360})
#10 309.0 	testing/testing.go:1526 +0x2e8
#10 309.0 testing.tRunner.func1()
#10 309.0 	testing/testing.go:1529 +0x406
#10 309.0 panic({0x8127a0, 0xc0001e6360})
#10 309.0 	runtime/panic.go:884 +0x23a
#10 309.0 github.com/parquet-go/parquet-go.(*byteArrayPage).index(...)
#10 309.0 	github.com/parquet-go/parquet-go/page.go:981
#10 309.0 github.com/parquet-go/parquet-go.(*byteArrayDictionary).lookupString(0xc0000b1180, {0xc0000c9000, 0xd, 0x400}, {{0xc000108c00, 0xd, 0x18}})
#10 309.0 	github.com/parquet-go/parquet-go/dictionary_purego.go:42 +0x170
#10 309.0 github.com/parquet-go/parquet-go.(*byteArrayDictionary).Lookup(0xc0000b1180, {0xc0000c9000, 0xd, 0x400}, {0xc000108c00, 0xd, 0x2a})
#10 309.0 	github.com/parquet-go/parquet-go/dictionary.go:748 +0x142
#10 309.0 github.com/parquet-go/parquet-go.(*indexedPageValues).ReadValues(0xc0001163c0, {0xc000108c00, 0xd, 0x2a})
#10 309.0 	github.com/parquet-go/parquet-go/dictionary.go:1332 +0xd6
#10 309.0 github.com/parquet-go/parquet-go.(*optionalPageValues).ReadValues(0xc00037e9a0, {0xc000108c00, 0x2a, 0x2a})
#10 309.0 	github.com/parquet-go/parquet-go/page_values.go:40 +0x15a
#10 309.0 github.com/parquet-go/parquet-go_test.printColumns(0xc000bb36c0, 0xc000266ea0, {0x85c97e, 0x2})
#10 309.0 	github.com/parquet-go/parquet-go/file_test.go:85 +0x65a
#10 309.0 github.com/parquet-go/parquet-go_test.printColumns(0xc000bb36c0, 0xc000266000, {0x0, 0x0})
#10 309.0 	github.com/parquet-go/parquet-go/file_test.go:119 +0x5d2
#10 309.0 github.com/parquet-go/parquet-go_test.TestOpenFile.func1(0xc000bb36c0)
#10 309.0 	github.com/parquet-go/parquet-go/file_test.go:50 +0x430
#10 309.0 testing.tRunner(0xc000bb36c0, 0xc0008f8bd0)
#10 309.0 	testing/testing.go:1576 +0x128
#10 309.0 created by testing.(*T).Run
#10 309.0 	testing/testing.go:1629 +0x50a
#10 309.0 exit status 2
#10 309.0 FAIL	github.com/parquet-go/parquet-go	12.396s
#10 ERROR: process "/bin/sh -c go test -v -trimpath -tags=purego" did not complete successfully: exit code: 1
------
 > [5/6] RUN go test -v -trimpath -tags=purego:
309.0 github.com/parquet-go/parquet-go_test.printColumns(0xc000bb36c0, 0xc000266000, {0x0, 0x0})
309.0 	github.com/parquet-go/parquet-go/file_test.go:119 +0x5d2
309.0 github.com/parquet-go/parquet-go_test.TestOpenFile.func1(0xc000bb36c0)
309.0 	github.com/parquet-go/parquet-go/file_test.go:50 +0x430
309.0 testing.tRunner(0xc000bb36c0, 0xc0008f8bd0)
309.0 	testing/testing.go:1576 +0x128
309.0 created by testing.(*T).Run
309.0 	testing/testing.go:1629 +0x50a
309.0 exit status 2
309.0 FAIL	github.com/parquet-go/parquet-go	12.396s
------
WARNING: No output specified with docker-container driver. Build result will only remain in the build cache. To push result image into registry use --push or to load image into docker use --load

Signed-off-by: Pavol Loffay <p.loffay@gmail.com>
@pavolloffay pavolloffay marked this pull request as draft September 5, 2023 09:31
@pavolloffay pavolloffay changed the title Add dockerfile to run s390x tests Run tests on s390x Sep 5, 2023
Signed-off-by: Pavol Loffay <p.loffay@gmail.com>
@joe-elliott
Copy link
Collaborator

Interesting that this is failing with --tags=purego. Does it fail in the same way with asm enabled?

I'm not sure any of the maintainers have access to this kind of hardware to help diagnose.

@achille-roussel
Copy link
Collaborator

@joe-elliott we only have assembly-optimized code for amd64 at this time, so on s390x we would use the Go implementation whether the tag is specified or not.

This failure is interesting:

#10 297.0 === RUN   TestSplitBlockFilter/INT96
#10 297.0     bloom_test.go:151: test #1: failed on input of size 1: []deprecated.Int96{deprecated.Int96{0xc2fd9401, 0xffd341c0, 0x4f6ec873}}
#10 297.0         

There's very little going on in this test so we could probably use it to track down the issue, it also highlights how it's likely the assumption of little-endian that is breaking:

Everywhere we assume a little-endian architecture we would need to provide an alternative version of the functions for big-endian.

@pavolloffay
Copy link
Author

pavolloffay commented Oct 6, 2023

Failing tests are:

  • TestSplitBlockFilter/INT96
  • TestBuffer/boolean/ #02 #03
  • TestBuffer/int32 #02 #03
  • TestBuffer/float #02 #03
  • TestBuffer/uint32 #02 #03
  • TestBufferRoundtripNestedRepeated
  • TestBufferRoundtripNestedRepeatedPointer
  • TestBufferSeekToRow
  • TestColumnPageIndex/file
  • TestConvertValue/string_to_int96
  • TestDictionary/BOOLEAN N>4
  • TestDictionary/FLOAT
  • TestDictionary/INT(32,false)
  • TestOpenFile/testdata/alltypes_tiny_pages.parquet

What is interesting is that TestDictionary and TestBuffer test are passing for int64, double, uuid

@Vishwanatha-HD
Copy link

Hi @pavolloffay,
Srinivas and myself are working on providing the Parquet support on s390x, in order to help the Openshift team by enabling the Tempo Operator support..

We see that many of the test cases are failing right now on s390x, and we tried our best to handle the testcase failure by changing endianness of the data types.. Even though, it helps in succeeding at some place, but it eventually fails at later stages.

These are testcase groups that were failing initially when we started looking into the parquet issue.
TestSplitBlockFilter/INT96
TestBuffer/boolean/
TestBuffer/int32
TestBuffer/float
TestBuffer/uint32
TestBufferRoundtripNestedRepeated
TestBufferRoundtripNestedRepeatedPointer
TestBufferSeekToRow
TestColumnPageIndex/file
TestConvertValue/string_to_int96 – Fixed this issue.
TestDictionary/BOOLEAN
TestDictionary/FLOAT
TestDictionary/INT(32,false)
TestOpenFile/testdata/alltypes_tiny_pages.parquet

Out of the above testcases, we have successfully fixed “TestConvertValue/string_to_int96” testcase…

We need your help and support in understanding the complete parquet package and its functionality, so that we can work on fixing the other testcase failures..
We want to know how the data is getting stored and retrieved as part of Parquet file format..

Warm Regards,
Vishwa..

@pavolloffay
Copy link
Author

hi @Vishwanatha-HD, thanks for looking into this issue. I have also identified that these tests are failing and IIRC I was able to fix one test but that resulted in other failing tests that were passing previously.

Our team does not have a good understanding of parquet-go library. We haven't worked with it directly. Perhaps folks from Grafana could assist with some capacity (e.g. @joe-elliott).

Feel free to reach out to me on the CNCF or RH slack.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants