AMashenkov commented on a change in pull request #123:
URL: https://github.com/apache/ignite-3/pull/123#discussion_r635988680
##########
File path:
modules/table/src/integrationTest/java/org/apache/ignite/distributed/ITDistributedTableTest.java
##########
@@ -97,11 +97,15 @@
private ClusterService client;
/** Schema. */
- public static SchemaDescriptor SCHEMA = new SchemaDescriptor(1, new
Column[] {
- new Column("key", NativeType.LONG, false)
- }, new Column[] {
- new Column("value", NativeType.LONG, false)
- });
+ public static SchemaDescriptor SCHEMA = new
SchemaDescriptor(UUID.randomUUID(),
+ 1,
+ new Column[] {
+ new Column("key", NativeTypes.LONG, false)
+ },
+ new Column[] {
+ new Column("value", NativeTypes.LONG, false)
+ }
+ );
Review comment:
```suggestion
public static SchemaDescriptor SCHEMA = new
SchemaDescriptor(UUID.randomUUID(),
1,
new Column[] {new Column("key", NativeTypes.LONG, false)},
new Column[] {new Column("value", NativeTypes.LONG, false)}
);
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]