vldpyatkov commented on code in PR #4929:
URL: https://github.com/apache/ignite-3/pull/4929#discussion_r1895406647


##########
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:
   `if (!(out.meta() instanceof HybridTimestamp))`
   This condition is useless for the metadata request because we never 
calculate an observation timestamp for this request type.



-- 
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]

Reply via email to