From 4766dddbc85f7821f08d0eeb405086c85a8fc5b0 Mon Sep 17 00:00:00 2001 From: James McMullan Date: Tue, 17 Sep 2024 15:26:33 -0400 Subject: [PATCH] HPCC4J-646 RowServiceInputStream should set isTLK when reading a TLK partition - Added change to set isTLK option on node object when requesting a read operation on a TLK Signed-off-by: James McMullan James.McMullan@lexisnexis.com --- .../org/hpccsystems/dfs/client/RowServiceInputStream.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dfsclient/src/main/java/org/hpccsystems/dfs/client/RowServiceInputStream.java b/dfsclient/src/main/java/org/hpccsystems/dfs/client/RowServiceInputStream.java index 3a8b26b77..24036ba96 100644 --- a/dfsclient/src/main/java/org/hpccsystems/dfs/client/RowServiceInputStream.java +++ b/dfsclient/src/main/java/org/hpccsystems/dfs/client/RowServiceInputStream.java @@ -2019,6 +2019,11 @@ private String makeNodeObject() sb.append(getFilePartCopy() + 1); sb.append("\", \n"); + if (this.dataPart.isTLK()) + { + sb.append("\"isTlk\" : \"true\",\n"); + } + // Do not apply filters and limits when inFetchingMode if (inFetchingMode == false) {