You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by "Gleb Kanterov (JIRA)" <ji...@apache.org> on 2018/10/08 13:48:00 UTC

[jira] [Created] (BEAM-5675) RowCoder#verifyDeterministic isn't consistent with Beam coders

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)