postgraph icon indicating copy to clipboard operation
postgraph copied to clipboard

All in One Graph Extension for Postgres

Results 216 postgraph issues
Sort by recently updated
recently updated
newest added

The Set/Remove Clause should only use one Command Id per execution node, not increament for every row.

bug

Alter the CREATE Execution Node to only use one command id.

bug

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...

enhancement
maintenance

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...

enhancement
maintenance

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...

maintenance

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...

maintenance

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

maintenance

For some reason the original author of the vle decided to all caps certain words in the struct names...

maintenance

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...

bug

We can use parenthesis to control the order of the UNION, EXCEPT, and INTERSECT set operators.

enhancement