[ https://issues.apache.org/jira/browse/CALCITE-4804?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Jess Balint closed CALCITE-4804. -------------------------------- Resolved in release 1.33.0 (2023-02-06) > Support Snapshot operator serialization and deserialization > ----------------------------------------------------------- > > Key: CALCITE-4804 > URL: https://issues.apache.org/jira/browse/CALCITE-4804 > Project: Calcite > Issue Type: Improvement > Reporter: xzh_dz > Assignee: Jiajun Xie > Priority: Major > Labels: pull-request-available > Fix For: 1.33.0 > > Time Spent: 20m > Remaining Estimate: 0h > > In my project, the dimension table has versions of the contents of the table. > When I serialize the `Snapshot operator`, there are exceptions. Examples of > exceptions can be reproduced as follows. > {code:java} > // code placeholder > @Test void testSnapshot() { > // Equivalent SQL: > // SELECT * > // FROM products_temporal FOR SYSTEM_TIME AS OF TIMESTAMP '2011-07-20 > 12:34:56' > final RelBuilder builder = RelBuilder.create(config().build()); > RelNode root = > builder.scan("products_temporal") > .snapshot( > builder.getRexBuilder().makeTimestampLiteral( > new TimestampString("2011-07-20 12:34:56"), 0)) > .build(); > RelJsonWriter jsonWriter = new RelJsonWriter(); > root.explain(jsonWriter); > String relJson = jsonWriter.asString(); > String s = deserializeAndDumpToTextFormat(getSchema(root), relJson); > }{code} > Exception: > {code:java} > // code placeholder > java.lang.RuntimeException: class does not have required constructor, class > org.apache.calcite.rel.logical.LogicalSnapshot(RelInput)java.lang.RuntimeException: > class does not have required constructor, class > org.apache.calcite.rel.logical.LogicalSnapshot(RelInput)java.lang.RuntimeException: > java.lang.RuntimeException: class does not have required constructor, class > org.apache.calcite.rel.logical.LogicalSnapshot(RelInput) at > org.apache.calcite.tools.Frameworks.withPrepare(Frameworks.java:193) at > org.apache.calcite.tools.Frameworks.withPlanner(Frameworks.java:135) at > org.apache.calcite.tools.Frameworks.withPlanner(Frameworks.java:153) at > org.apache.calcite.test.RelBuilderTest.deserializeAndDump(RelBuilderTest.java:4005) > at > org.apache.calcite.test.RelBuilderTest.deserializeAndDumpToTextFormat(RelBuilderTest.java:3981) > {code} -- This message was sent by Atlassian Jira (v8.20.10#820010)