Gleb Kanterov created BEAM-5675:
-----------------------------------
Summary: RowCoder#verifyDeterministic isn't consistent with Beam
coders
Key: BEAM-5675
URL: https://issues.apache.org/jira/browse/BEAM-5675
Project: Beam
Issue Type: Bug
Components: dsl-sql
Affects Versions: 2.7.0
Reporter: Gleb Kanterov
Assignee: Xu Mingmin
For instance, `DoubleCoder#verifyDeterministic` throws an exception, but
`RowCoder#verifyDeterministic` doesn't.
Expected to throw NonDeterministicException
{code:java}
RowCoder.of(
Schema
.builder()
.addField("foo", Schema.FieldType.DOUBLE)
.build()
).verifyDeterministic();
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)