Skip to content

Commit

Permalink
IGNITE-24053 (minor) Added TODO.
Browse files Browse the repository at this point in the history
  • Loading branch information
xtern committed Jan 21, 2025
1 parent 3e7f227 commit bb8a386
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -817,6 +817,7 @@ private void processOperation(ChannelHandlerContext ctx, ClientMessageUnpacker i
case ClientOp.SQL_EXEC_SCRIPT:
return ClientSqlExecuteScriptRequest.process(in, queryProcessor).thenRun(() -> {
if (out.meta() == null) {
// TODO https://issues.apache.org/jira/browse/IGNITE-24275 Must set updated time instead of current time.
out.meta(clockService.current());
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ public static CompletableFuture<Void> process(
arguments = ArrayUtils.OBJECT_EMPTY_ARRAY;
}

// TODO https://issues.apache.org/jira/browse/IGNITE-24275 Script must return updated time to client.
HybridTimestamp clientTs = HybridTimestamp.nullableHybridTimestamp(in.unpackLong());
var tsUpdater = HybridTimestampTracker.clientTracker(clientTs, ts -> {});

Expand Down

0 comments on commit bb8a386

Please sign in to comment.