From: <fir...@us...> - 2013-11-14 00:27:20
|
Revision: 58781 http://sourceforge.net/p/firebird/code/58781 Author: firebirds Date: 2013-11-14 00:27:17 +0000 (Thu, 14 Nov 2013) 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 2013-11-13 18:36:59 UTC (rev 58780) +++ firebird/trunk/ChangeLog 2013-11-14 00:27:17 UTC (rev 58781) @@ -1,3 +1,29 @@ + 2013-11-13 16:08 dimitr + M src/jrd/Database.cpp +Misc. + + 2013-11-13 15:46 asfernandes + M src/dsql/Nodes.h + M src/dsql/Parser.cpp + M src/dsql/parse.y +Fixed CORE-4258 - Wrong boundary for minimum value for BIGINT/DECIMAL(18). + + 2013-11-13 15:42 dimitr + M src/jrd/cch.cpp + M src/jrd/inf.cpp +Attachments marked as shutdown may still be running (before they reach the rescheduling point), so they should not be accounted as already gone. This should also fix CORE-4236: Database shutdown is reported as successfully completed before all active connections are in fact interrupted. + + 2013-11-13 15:39 dimitr + M src/jrd/jrd.cpp +Complementary patch for one of my prior commits (forced rollbacks should go through the TIP). + + 2013-11-13 07:44 dimitr + M src/jrd/CryptoManager.cpp + M src/jrd/GlobalRWLock.cpp + M src/jrd/GlobalRWLock.h + M src/jrd/nbak.cpp +Separated shutdown (mostly for locks) from destruction. + 2013-11-12 16:56 dimitr M src/jrd/nbak.cpp We're quite lucky this implicit conversion worked correctly. Fixed. Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-11-13 18:36:59 UTC (rev 58780) +++ firebird/trunk/src/jrd/build_no.h 2013-11-14 00:27:17 UTC (rev 58781) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30723 + FORMAL BUILD NUMBER:30728 */ -#define PRODUCT_VER_STRING "3.0.0.30723" -#define FILE_VER_STRING "WI-T3.0.0.30723" -#define LICENSE_VER_STRING "WI-T3.0.0.30723" -#define FILE_VER_NUMBER 3, 0, 0, 30723 +#define PRODUCT_VER_STRING "3.0.0.30728" +#define FILE_VER_STRING "WI-T3.0.0.30728" +#define LICENSE_VER_STRING "WI-T3.0.0.30728" +#define FILE_VER_NUMBER 3, 0, 0, 30728 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30723" +#define FB_BUILD_NO "30728" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Alpha 1" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2013-11-13 18:36:59 UTC (rev 58780) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-11-14 00:27:17 UTC (rev 58781) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30723 +BuildNum=30728 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |