Mats Kindahl
Mats Kindahl
Utility `csplit`does not support option `--suffix-format`.
The option `--elide-empty-files` is not supported by `csplit`.
Utility `csplit`does not support option `--suppress-matched`, so it should be added.
In order to implement algorithms such as shortest-path and max-flow, it is necessary to be able to decorate edges and vertexes with weights or costs. This should ideally not be...
There is currently no support for working with undirected graph. Depending on the algorithms to implement, it might be more reasonable to use something else than an adjacency list.
This commit adds a check function to the `bgw_job` table and also create new validation functions for continuous aggregate, reorder, compress, and retention policies. The checking functions will check that...
When reading the job status table `bgw_job_stat` and after that updating it, locks where released after the read, allowing a competing session to update the job status and trigger a...
# Background a custom action is added using `add_job` or altered using `alter_job` and there is a problem with the configuration, it will not generate an error until the job...
For some unexpected conditions, we have a check and an error that is generated. Since this always generate an error, it is more difficult to find the bug if the...
## Background When implementing [aggregation functions](https://www.postgresql.org/docs/current/sql-createaggregate.html), they proceed by generating internal state and then apply a finalization function to "complete" the aggregation. To support parallel aggregation, there is also support...