vldpyatkov commented on code in PR #4929:
URL: https://github.com/apache/ignite-3/pull/4929#discussion_r1895404895
##########
modules/client-handler/src/main/java/org/apache/ignite/client/handler/ClientInboundMessageHandler.java:
##########
@@ -743,16 +757,18 @@ private void processOperation(ChannelHandlerContext ctx,
ClientMessageUnpacker i
return ClientJdbcColumnMetadataRequest.process(in, out,
jdbcQueryEventHandler);
case ClientOp.JDBC_SCHEMAS_META:
- return ClientJdbcSchemasMetadataRequest.process(in, out,
jdbcQueryEventHandler);
+ return ClientJdbcSchemasMetadataRequest.process(in, out,
jdbcQueryEventHandler).thenRun(() -> {
+ out.meta(clockService.current());
Review Comment:
We ought to have a timestamp more or equal to the timestamp that is used to
get the metadata. Otherwise, we may start RO before a table in the metadata was
created.
--
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]