Skip to content

Commit

Permalink
HPCC4J-646 RowServiceInputStream should set isTLK when reading a TLK …
Browse files Browse the repository at this point in the history
…partition

- Added change to set isTLK option on node object when requesting a read operation on a TLK

Signed-off-by: James McMullan [email protected]
  • Loading branch information
jpmcmu committed Sep 17, 2024
1 parent 735de52 commit 3c2d130
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2351,6 +2351,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)
{
Expand Down

0 comments on commit 3c2d130

Please sign in to comment.