We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 752bffb commit ef269dcCopy full SHA for ef269dc
schema/arrow_test.go
@@ -171,6 +171,7 @@ func TestCQIDHashingConsistency(t *testing.T) {
171
cqIDFields := got.Schema().FieldIndices(CqIDColumn.Name)
172
require.Len(t, cqIDFields, 1)
173
// we are now using an internal version of the official SHA1 module
174
- // d8f3b1de-8c63-5a0e-a1aa-19e9b5311c24 is the expected hash value from the official SHA1 module that we expect in our implementation
+ // this test ensures that our implementation produces the same hash value as the official one
175
+ // d8f3b1de-8c63-5a0e-a1aa-19e9b5311c24 is the hash value from the official implementation
176
assert.Equal(t, "d8f3b1de-8c63-5a0e-a1aa-19e9b5311c24", got.Column(cqIDFields[0]).ValueStr(0))
177
}
0 commit comments