From: <fir...@us...> - 2013-12-06 00:26:37
|
Revision: 58891 http://sourceforge.net/p/firebird/code/58891 Author: firebirds Date: 2013-12-06 00:26:31 +0000 (Fri, 06 Dec 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-12-05 17:36:29 UTC (rev 58890) +++ firebird/trunk/ChangeLog 2013-12-06 00:26:31 UTC (rev 58891) @@ -1,3 +1,25 @@ + 2013-12-05 16:37 dimitr + M src/jrd/recsrc/AggregatedStream.cpp + M src/jrd/recsrc/NestedLoopJoin.cpp + M src/jrd/recsrc/Union.cpp + M src/jrd/recsrc/WindowedStream.cpp +Improved the detailed plan output. + + 2013-12-05 13:59 dimitr + M src/dsql/ExprNodes.cpp + M src/dsql/pass1.cpp + M src/jrd/recsrc/AggregatedStream.cpp + M src/jrd/recsrc/RecordSource.h +Fixed three issues together represented in CORE-4261: +- non-existent result of the window function (in outer joins) is reported as 0 instead of NULL +- derived constant is processed wrongly in windowed streams +- deeper-than-root partitions are not "nullified" in outer joins +Adriano, please review. + + 2013-12-05 10:15 roman-simakov + M src/utilities/nbackup/nbackup.cpp +Ignoring port for localhost in nbackup. Added check for localhost and error message if non localhost provided. + 2013-12-03 10:52 alexpeshkoff M builds/posix/Makefile.in Fixed build - ids.h was regenerated too late Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-12-05 17:36:29 UTC (rev 58890) +++ firebird/trunk/src/jrd/build_no.h 2013-12-06 00:26:31 UTC (rev 58891) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30777 + FORMAL BUILD NUMBER:30780 */ -#define PRODUCT_VER_STRING "3.0.0.30777" -#define FILE_VER_STRING "WI-T3.0.0.30777" -#define LICENSE_VER_STRING "WI-T3.0.0.30777" -#define FILE_VER_NUMBER 3, 0, 0, 30777 +#define PRODUCT_VER_STRING "3.0.0.30780" +#define FILE_VER_STRING "WI-T3.0.0.30780" +#define LICENSE_VER_STRING "WI-T3.0.0.30780" +#define FILE_VER_NUMBER 3, 0, 0, 30780 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30777" +#define FB_BUILD_NO "30780" #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-12-05 17:36:29 UTC (rev 58890) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-12-06 00:26:31 UTC (rev 58891) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30777 +BuildNum=30780 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |