Skip to content

Commit 564d41f

Browse files
committed
- Work on JSON and JSON UDF's
modified: storage/connect/json.cpp storage/connect/jsonudf.cpp storage/connect/tabjson.cpp - CntReadNext: Enable EvalColumns for longjmp modified: storage/connect/connect.cc
1 parent 2201aa6 commit 564d41f

File tree

4 files changed

+1247
-1105
lines changed

4 files changed

+1247
-1105
lines changed

storage/connect/connect.cc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,12 @@ RCODE CntReadNext(PGLOBAL g, PTDB tdbp)
469469

470470
} while (rc == RC_NF);
471471

472+
if (rc == RC_OK)
473+
rc= EvalColumns(g, tdbp, false);
474+
472475
err:
473476
g->jump_level--;
474-
return (rc != RC_OK) ? rc : EvalColumns(g, tdbp, false);
477+
return rc;
475478
} // end of CntReadNext
476479

477480
/***********************************************************************/

0 commit comments

Comments
 (0)