From: <fir...@us...> - 2013-11-29 00:32:57
|
Revision: 58857 http://sourceforge.net/p/firebird/code/58857 Author: firebirds Date: 2013-11-29 00:32:54 +0000 (Fri, 29 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-28 17:26:54 UTC (rev 58856) +++ firebird/trunk/ChangeLog 2013-11-29 00:32:54 UTC (rev 58857) @@ -1,3 +1,19 @@ + 2013-11-28 17:26 dimitr + M src/jrd/Optimizer.cpp +Correction for CORE-1550: Unnecessary index scan happens when the same index is mapped to both WHERE and ORDER BY clauses. +Also resolved CORE-1846: Allow index walk (ORDER plan) when there's a composite index {A, B} and the query looks like WHERE A = ? ORDER BY B. + + 2013-11-28 16:37 alexpeshkoff + M builds/install/arch-specific/linux/Makefile.in + M builds/install/posix-common/posixLibrary.sh.in +debuginfo uninstall + + 2013-11-28 09:12 dimitr + M src/jrd/Optimizer.cpp + M src/jrd/Optimizer.h +Another solution for CORE-1550: Unnecessary index scan happens when the same index is mapped to both WHERE and ORDER BY clauses. It's intended to fix the reported issues. +Also resolved CORE-4285: Choose the best matching index for navigation. + 2013-11-27 13:08 alexpeshkoff M builds/install/arch-specific/linux/linuxLibrary.sh.in Fixed regression in unistaller which arrived when adding systemd support Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-11-28 17:26:54 UTC (rev 58856) +++ firebird/trunk/src/jrd/build_no.h 2013-11-29 00:32:54 UTC (rev 58857) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30769 + FORMAL BUILD NUMBER:30772 */ -#define PRODUCT_VER_STRING "3.0.0.30769" -#define FILE_VER_STRING "WI-T3.0.0.30769" -#define LICENSE_VER_STRING "WI-T3.0.0.30769" -#define FILE_VER_NUMBER 3, 0, 0, 30769 +#define PRODUCT_VER_STRING "3.0.0.30772" +#define FILE_VER_STRING "WI-T3.0.0.30772" +#define LICENSE_VER_STRING "WI-T3.0.0.30772" +#define FILE_VER_NUMBER 3, 0, 0, 30772 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30769" +#define FB_BUILD_NO "30772" #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-28 17:26:54 UTC (rev 58856) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-11-29 00:32:54 UTC (rev 58857) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30769 +BuildNum=30772 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |