From: <fir...@us...> - 2013-07-12 00:43:43
|
Revision: 58341 http://sourceforge.net/p/firebird/code/58341 Author: firebirds Date: 2013-07-12 00:43:40 +0000 (Fri, 12 Jul 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-07-11 06:00:59 UTC (rev 58340) +++ firebird/trunk/ChangeLog 2013-07-12 00:43:40 UTC (rev 58341) @@ -1,3 +1,35 @@ + 2013-07-11 06:00 dimitr + M src/dsql/StmtNodes.cpp +Fixed assertion/crash appeared in test bugs.core_1910. + + 2013-07-11 02:21 asfernandes + M src/jrd/DataTypeUtil.cpp +Fix the assertion with Thomas Beckmann test. + + 2013-07-10 19:49 dimitr + M src/jrd/recsrc/HashJoin.cpp +Fixed hash join of more than two streams. + + 2013-07-10 11:44 dimitr + M src/dsql/DdlNodes.epp + M src/dsql/StmtNodes.cpp + M src/jrd/exe.h +1) Fixed XCP_MESSAGE_LENGTH to represent the real max length. We have the column defined as VARCHAR(1023), so there's no need to subtract the overhead. +2) Slightly refactored the message buffer management. +3) Fixed the buffer overrun in the release build. + + 2013-07-10 10:06 dimitr + M src/remote/merge.cpp +Fixed server crash in both remote server and remote client. + + 2013-07-10 06:55 dimitr + M src/msgs/messages2.sql +We support 256 contexts now, not 255. + + 2013-07-10 06:21 dimitr + M src/msgs/messages2.sql +Fixed the error message. + 2013-07-09 16:14 dimitr M src/jrd/opt.cpp Restored (in the modified form) the code wrongly removed three years ago. This acts as a complimentary fix for CORE-4142. Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-07-11 06:00:59 UTC (rev 58340) +++ firebird/trunk/src/jrd/build_no.h 2013-07-12 00:43:40 UTC (rev 58341) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30514 + FORMAL BUILD NUMBER:30521 */ -#define PRODUCT_VER_STRING "3.0.0.30514" -#define FILE_VER_STRING "WI-T3.0.0.30514" -#define LICENSE_VER_STRING "WI-T3.0.0.30514" -#define FILE_VER_NUMBER 3, 0, 0, 30514 +#define PRODUCT_VER_STRING "3.0.0.30521" +#define FILE_VER_STRING "WI-T3.0.0.30521" +#define LICENSE_VER_STRING "WI-T3.0.0.30521" +#define FILE_VER_NUMBER 3, 0, 0, 30521 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30514" +#define FB_BUILD_NO "30521" #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-07-11 06:00:59 UTC (rev 58340) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-07-12 00:43:40 UTC (rev 58341) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30514 +BuildNum=30521 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |