connectivity/source/drivers/firebird/Connection.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit ca109bc22f07774c776b4305d137c55f90ae0b98 Author: jucasaca <jucas...@gmail.com> AuthorDate: Thu Mar 20 19:22:18 2025 +0100 Commit: Mike Kaganski <mike.kagan...@collabora.com> CommitDate: Tue Mar 25 11:10:59 2025 +0100 tdf#165839 Changes the transaction isolation level Changes the transaction isolation level to allow modification of the same table by multiple simultaneous connections Change-Id: I5db7e55ffbe75e21c5eba56e168deb8e478eb282 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183180 Reviewed-by: Mike Kaganski <mike.kagan...@collabora.com> Tested-by: Jenkins diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx index 8f2711645ca7..fc105a883e4e 100644 --- a/connectivity/source/drivers/firebird/Connection.cxx +++ b/connectivity/source/drivers/firebird/Connection.cxx @@ -84,7 +84,7 @@ Connection::Connection() , m_bIsFile(false) , m_bIsAutoCommit(true) , m_bIsReadOnly(false) - , m_aTransactionIsolation(TransactionIsolation::REPEATABLE_READ) + , m_aTransactionIsolation(TransactionIsolation::READ_COMMITTED) #if SAL_TYPES_SIZEOFPOINTER == 8 , m_aDBHandle(0) , m_aTransactionHandle(0)