diff --git a/ChangeLog b/ChangeLog index 55fb218dd5..96f5a18436 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,34 @@ + 2011-03-16 21:08 hvlad + M src/dsql/dsql.cpp +Fixed bug CORE-3389 : isc_dsql_exec_immed2 with zero transaction handle could lead to a BUGCHECK(147). +While HEAD is not affected directly by this exact test case i see no harm to repeat the fix there too. + + 2011-03-16 11:04 alexpeshkoff + A src/auth/SecurityDatabase/LegacyHash.h + M src/auth/SecurityDatabase/LegacyManagement.epp + M src/auth/SecurityDatabase/LegacyServer.cpp + M src/auth/SecurityDatabase/LegacyServer.h + M src/common/classes/ImplementHelper.h + M src/common/classes/locks.h + M src/common/os/os_utils.h + M src/common/os/posix/os_utils.cpp + M src/common/os/win32/os_utils.cpp + M src/gpre/boot/gpre_meta_boot.cpp + M src/include/FirebirdPluginApi.h + M src/include/Interface.h + A src/include/Timer.h + M src/jrd/extds/ExtDS.cpp + M src/jrd/extds/ExtDS.h + M src/jrd/jrd.cpp + M src/jrd/trace/TraceConfigStorage.cpp + M src/jrd/trace/TraceConfigStorage.h + M src/plugins/udr_engine/UdrEngine.cpp + M src/yvalve/MasterImplementation.cpp + M src/yvalve/PluginManager.cpp + M src/yvalve/PluginManager.h + M src/yvalve/why.cpp +Added timer-related interfaces. Added helper method to wait for plugin to be released on shutdown. Misc stability changes in PluginManager. + 2011-03-11 00:58 asfernandes M src/dsql/StmtNodes.cpp M src/remote/server/server.cpp diff --git a/src/jrd/build_no.h b/src/jrd/build_no.h index 1d00709306..f244ea5cb4 100644 --- a/src/jrd/build_no.h +++ b/src/jrd/build_no.h @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:29192 + FORMAL BUILD NUMBER:29194 */ -#define PRODUCT_VER_STRING "3.0.0.29192" -#define FILE_VER_STRING "WI-T3.0.0.29192" -#define LICENSE_VER_STRING "WI-T3.0.0.29192" -#define FILE_VER_NUMBER 3, 0, 0, 29192 +#define PRODUCT_VER_STRING "3.0.0.29194" +#define FILE_VER_STRING "WI-T3.0.0.29194" +#define LICENSE_VER_STRING "WI-T3.0.0.29194" +#define FILE_VER_NUMBER 3, 0, 0, 29194 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "29192" +#define FB_BUILD_NO "29194" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Unstable" diff --git a/src/misc/writeBuildNum.sh b/src/misc/writeBuildNum.sh index 108e5ebf8c..5b1ff6a809 100755 --- a/src/misc/writeBuildNum.sh +++ b/src/misc/writeBuildNum.sh @@ -9,7 +9,7 @@ BuildType=T MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=29192 +BuildNum=29194 NowAt=`pwd` cd `dirname $0`