Skip to content

Commit

Permalink
HPCC4J-646 RowServiceInputStream set isTLK when reading a TLK (#759)
Browse files Browse the repository at this point in the history
Signed-off-by: James McMullan [email protected]
  • Loading branch information
jpmcmu authored Sep 20, 2024
1 parent 434557e commit f3718e4
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
{
Expand Down

0 comments on commit f3718e4

Please sign in to comment.