denis-chudov commented on code in PR #5468:
URL: https://github.com/apache/ignite-3/pull/5468#discussion_r2012040072
##########
modules/catalog/src/main/java/org/apache/ignite/internal/catalog/descriptors/CatalogHashIndexDescriptorSerializers.java:
##########
@@ -43,21 +46,22 @@ static class HashIndexDescriptorSerializerV1 implements
CatalogObjectSerializer<
public CatalogHashIndexDescriptor readFrom(CatalogObjectDataInput
input) throws IOException {
int id = input.readVarIntAsInt();
String name = input.readUTF();
- long updateToken = input.readVarInt();
+ long updateTimestampLong = input.readVarInt();
Review Comment:
This doesn't imply any changes in underlying storage, and caused only by the
changes in the object. Now the `long` taken from storage is interpreted in
another way: it's converted into timestamp, but this doesn't break anything.
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]