Pieter Martin
Pieter Martin
In the `DBeaver` screen shot there are multiple `active` sql statements, including two `ALTER TABLE` statements, `ALTER` statements take a table level lock on `postgresql`. However `postgresql` will throw an...
Yes, all transactions. This is both a `TinkerPop` feature and a `postgresql` feature. `TinkerPop` automatically starts a transaction and for `postgresql` every sql query runs in a transaction. I see...
Some more advice, if your application is going to create many topology elements in parallel, there is always a risk that `postgresql` might throw a `dead lock` exception. To prevent...
I can't get it to work either.
Sqlg has thousands of tests, I'll need details if you want a specific example. Feel free to open this and request an example.
Done in Sqlg 3.0.0
Feel free to reopen this.
The original settings do not get a chance to be restored because the `init` method checks for the `explicitInitialization` flag. ``` if (!options.explicitInitialization) { finishInitialization(); } ``` The `finishInitialization` does...
Yes that will work for us, thanks.
Ok, much faster 0:00:02.066 for the insert in batch mode. Still slow though. neo4j takes 0:00:00.243 in normal mode. sqlg takes 0:00:00.269 in normal mode sqlg takes in 0:00:00.130 (postgres...