Describe the bug, including details regarding any error messages, version, and platform.
It's stated in the array.Builder interface description that AppendValueFromString adds a new value from a string. Inverse of array.ValueStr(i int) string.
However, some types fail to adhere to this rule.
One example I found was array.DayTimeInterval (along with array.DayTimeIntervalBuilder):
The issue was likely introduced in #34986
Component(s)
Go
Describe the bug, including details regarding any error messages, version, and platform.
It's stated in the
array.Builderinterface description thatAppendValueFromString adds a new value from a string. Inverse of array.ValueStr(i int) string.However, some types fail to adhere to this rule.
One example I found was
array.DayTimeInterval(along witharray.DayTimeIntervalBuilder):array.DayTimeInterval.ValueStrreturns a quoted value fromfmt.Sprintfarray.DayTimeIntervalBuilder.DayTimeIntervalBuildertries to parse via JSON marshalingThe issue was likely introduced in #34986
Component(s)
Go