You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, if multiple database operations are done on DuckDB parallelly, it doesn't work with the current provider by default. Reason for this is that in DuckDB a single connection is thread-safe but is locked for the duration of the queries, effectively serializing database access in this case.
As per documentation, the hook should also return the cursor instead. If you want to create a second connection to an existing database, you can use the cursor() method.
The text was updated successfully, but these errors were encountered:
Currently, if multiple database operations are done on DuckDB parallelly, it doesn't work with the current provider by default. Reason for this is that in DuckDB a single connection is thread-safe but is locked for the duration of the queries, effectively serializing database access in this case.
As per documentation, the hook should also return the cursor instead. If you want to create a second connection to an existing database, you can use the cursor() method.
The text was updated successfully, but these errors were encountered: