postgraph
postgraph copied to clipboard
All in One Graph Extension for Postgres
The Set/Remove Clause should only use one Command Id per execution node, not increament for every row.
Once the vle is a custom execution node, move the retrieval of nodes to children scan nodes. When we introduce partitioning, new table access methods, time series and distributed tables...
Move the VLE into a Custom Execution Node. This can open us up to a world of better performance in the future and will help up fix the consistency issues...
The original author decided to not put the components into seperate files for better maintainance, mumbled something about performance while doing so. The performance was horrible anyway. Split into seperate...
There is large quantities of the vle code that are currently unreachable. The vle is already complex enough without adding in a bunch of code that isn't even used. Remove...
The vle currently uses dfs to search for paths. Rename the function to that, allowing for more pathing finding algorithms to be implemented and integrated into the vle later
For some reason the original author of the vle decided to all caps certain words in the struct names...
Currently the counter that assigns the unique id for the caching mechanism is in the parser. Which means this counter gets reset to 0 for every session. This makes the...
We can use parenthesis to control the order of the UNION, EXCEPT, and INTERSECT set operators.