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 90bcdec commit 6674b3cCopy full SHA for 6674b3c
sql/hash/hash.go
@@ -60,6 +60,8 @@ func HashOf(ctx *sql.Context, sch sql.Schema, row sql.Row) (uint64, error) {
60
61
switch typ := sch[i].Type.(type) {
62
case types.ExtendedType:
63
+ // TODO: this should use types.ExtendedType.SerializeValue, but there are some doltgres conversion issues
64
+ // we need to address. Resort to old behavior for now.
65
_, err = fmt.Fprintf(hash, "%v", v)
66
if err != nil {
67
return 0, err
0 commit comments