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 73b8be6 commit 752bffbCopy full SHA for 752bffb
schema/arrow_test.go
@@ -170,5 +170,7 @@ func TestCQIDHashingConsistency(t *testing.T) {
170
require.NoError(t, err)
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
175
assert.Equal(t, "d8f3b1de-8c63-5a0e-a1aa-19e9b5311c24", got.Column(cqIDFields[0]).ValueStr(0))
176
}
0 commit comments