Details
-
Improvement
-
Status: Done
-
Normal
-
Resolution: Done
-
None
Description
After completion of AGE2-345, AGE2-348, and AGE2-349, research if it is possible to remove the following from CREATE, SET, & DELETE's execution logic -
/* * Postgres does not assign the es_output_cid in queries that do * not write to disk, ie: SELECT commands. We need the command id * for our clauses, and we may need to initialize it. We cannot use * GetCurrentCommandId because there may be other cypher clauses * that have modified the command id. */ if (estate->es_output_cid == 0) estate->es_output_cid = estate->es_snapshot->curcid;
It shouldn't be necessary once all 3 are done but, we need to be sure.
Implement any additional fixes and remove it.