From: <fir...@us...> - 2015-02-23 00:13:49
|
Revision: 60760 http://sourceforge.net/p/firebird/code/60760 Author: firebirds Date: 2015-02-23 00:13:47 +0000 (Mon, 23 Feb 2015) Log Message: ----------- nightly update Modified Paths: -------------- firebird/trunk/ChangeLog firebird/trunk/src/jrd/build_no.h firebird/trunk/src/misc/writeBuildNum.sh Modified: firebird/trunk/ChangeLog =================================================================== --- firebird/trunk/ChangeLog 2015-02-22 17:12:57 UTC (rev 60759) +++ firebird/trunk/ChangeLog 2015-02-23 00:13:47 UTC (rev 60760) @@ -1,3 +1,38 @@ + 2015-02-22 16:04 hvlad + M src/jrd/extds/InternalDS.cpp +Bit more safety + + 2015-02-22 15:47 asfernandes + M src/jrd/extds/InternalDS.cpp +Use RefPtr::assignRefNoIncr so we can clearly see the code is not going to crash. + + 2015-02-22 11:17 hvlad + M src/jrd/btr.cpp +Improvement CORE-4696 : No need to flush dirty pages to disk after creation of temporary table index + + 2015-02-22 11:02 hvlad + M src/jrd/dfw.epp + M src/jrd/dpm.epp + M src/jrd/idx.cpp + M src/jrd/intl.cpp + M src/jrd/met.epp + M src/jrd/pag.cpp + M src/jrd/vio.cpp +Use attachment's or relation's pool instead of dbb_permanent where it is more suitable. +It fixed memory leak from dbb_permanent (CORE-4683) + + 2015-02-22 10:58 hvlad + M src/jrd/EngineInterface.h + M src/jrd/extds/InternalDS.cpp + M src/jrd/extds/InternalDS.h + M src/jrd/jrd.cpp +Fixed leak of various J-objects in EXECUTE STATEMENT (CORE-4683) + + 2015-02-22 10:49 hvlad + M src/jrd/tra.cpp + M src/utilities/ntrace/TracePluginImpl.cpp +Fixed regression in 32-bit builds: transaction numbers in sweep info (both trace event and firebird.log message) printed incorrectly + 2015-02-20 16:56 dimitr M src/dsql/DsqlCompilerScratch.cpp Fixed CORE-4694: "Column unknown" error while preparing a recursive query if the recursive part contains ALIASED datasource in the join with anchor table. Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2015-02-22 17:12:57 UTC (rev 60759) +++ firebird/trunk/src/jrd/build_no.h 2015-02-23 00:13:47 UTC (rev 60760) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:31675 + FORMAL BUILD NUMBER:31681 */ -#define PRODUCT_VER_STRING "3.0.0.31675" -#define FILE_VER_STRING "WI-T3.0.0.31675" -#define LICENSE_VER_STRING "WI-T3.0.0.31675" -#define FILE_VER_NUMBER 3, 0, 0, 31675 +#define PRODUCT_VER_STRING "3.0.0.31681" +#define FILE_VER_STRING "WI-T3.0.0.31681" +#define LICENSE_VER_STRING "WI-T3.0.0.31681" +#define FILE_VER_NUMBER 3, 0, 0, 31681 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "31675" +#define FB_BUILD_NO "31681" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Beta 2" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2015-02-22 17:12:57 UTC (rev 60759) +++ firebird/trunk/src/misc/writeBuildNum.sh 2015-02-23 00:13:47 UTC (rev 60760) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=31675 +BuildNum=31681 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |