You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by "shizhengchao (Jira)" <ji...@apache.org> on 2020/10/14 09:00:00 UTC

[jira] [Created] (FLINK-19638) AvroUnionLogicalSerializerTest class compile error

shizhengchao created FLINK-19638:
------------------------------------

             Summary: AvroUnionLogicalSerializerTest class compile error
                 Key: FLINK-19638
                 URL: https://issues.apache.org/jira/browse/FLINK-19638
             Project: Flink
          Issue Type: Bug
          Components: Tests
    Affects Versions: 1.11.2
            Reporter: shizhengchao


the constructor parameter is java.lang.Long of class UnionLogicalType , but the tests is java.time.Instant
{code:java}
@Override
	protected UnionLogicalType[] getTestData() {
		final Random rnd = new Random();
		final UnionLogicalType[] data = new UnionLogicalType[20];

		for (int i = 0; i < data.length; i++) {
			data[i] = new UnionLogicalType(Instant.ofEpochMilli(rnd.nextLong()));
		}

		return data;
	}
{code}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)