connectivity/source/drivers/firebird/Connection.cxx | 2 +- extras/source/wordbook/technical.dic | 1 + 2 files changed, 2 insertions(+), 1 deletion(-)
New commits: commit 8d735662050731fa69fb10e7b9df9e4ad0db57a0 Author: Manish <mailmessgcn...@proton.me> AuthorDate: Wed Mar 26 22:37:29 2025 +0530 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Apr 9 15:30:45 2025 +0200 tdf#87605 Add NoSQL to the technical dictionary Change-Id: I0eaa71fff27e7270b4bec72f80be1cee7b05a676 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183349 Tested-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> Tested-by: Jenkins Reviewed-by: Ilmari Lauhakangas <ilmari.lauhakan...@libreoffice.org> (cherry picked from commit b5ccb7acf05dd04078089ff7a6e2f0f7f32d1cf2) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183404 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/extras/source/wordbook/technical.dic b/extras/source/wordbook/technical.dic index 5c2aa80d5a08..6cad6e3be246 100644 --- a/extras/source/wordbook/technical.dic +++ b/extras/source/wordbook/technical.dic @@ -225,6 +225,7 @@ Nextcloud Nixie NNTP Nokia +NoSQL Novell NRadius Nvidia commit b6adee9825e6e58f68dfeb8c57c951a478bad365 Author: jucasaca <jucas...@gmail.com> AuthorDate: Thu Mar 20 19:22:18 2025 +0100 Commit: Xisco Fauli <xiscofa...@libreoffice.org> CommitDate: Wed Apr 9 15:30:30 2025 +0200 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 (cherry picked from commit ca109bc22f07774c776b4305d137c55f90ae0b98) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183327 Reviewed-by: Xisco Fauli <xiscofa...@libreoffice.org> diff --git a/connectivity/source/drivers/firebird/Connection.cxx b/connectivity/source/drivers/firebird/Connection.cxx index d81c3625d5fa..ddeaa249e54f 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)