summaryrefslogtreecommitdiffstats
path: root/Bugzilla/DB/Oracle.pm
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-01-19 02:57:20 +0100
committermkanat%bugzilla.org <>2008-01-19 02:57:20 +0100
commitbe10baab33ce80f6d899a72c7e404e46167cb920 (patch)
tree7f01d788ff3279cdac8e8b1c8d2713ed05a6b26e /Bugzilla/DB/Oracle.pm
parent793c103590ff0742b6163dca25cfc6250c68f803 (diff)
downloadbugzilla-be10baab33ce80f6d899a72c7e404e46167cb920.tar.gz
bugzilla-be10baab33ce80f6d899a72c7e404e46167cb920.tar.xz
Bug 411832: [Oracle] Change ISOLATION_LEVEL to 'READ COMMITTED'
Patch By Xiaoou Wu <xiaoou.wu@oracle.com> r=mkanat, a=mkanat
Diffstat (limited to 'Bugzilla/DB/Oracle.pm')
-rw-r--r--Bugzilla/DB/Oracle.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/DB/Oracle.pm b/Bugzilla/DB/Oracle.pm
index 169550087..9f759785e 100644
--- a/Bugzilla/DB/Oracle.pm
+++ b/Bugzilla/DB/Oracle.pm
@@ -50,7 +50,7 @@ use base qw(Bugzilla::DB);
# Constants
#####################################################################
use constant EMPTY_STRING => '__BZ_EMPTY_STR__';
-use constant ISOLATION_LEVEL => 'SERIALIZABLE';
+use constant ISOLATION_LEVEL => 'READ COMMITTED';
use constant BLOB_TYPE => { ora_type => ORA_BLOB };
sub new {