From: <fir...@us...> - 2016-03-06 00:09:37
|
Revision: 63099 http://sourceforge.net/p/firebird/code/63099 Author: firebirds Date: 2016-03-06 00:09:35 +0000 (Sun, 06 Mar 2016) 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 2016-03-05 17:40:49 UTC (rev 63098) +++ firebird/trunk/ChangeLog 2016-03-06 00:09:35 UTC (rev 63099) @@ -1,3 +1,44 @@ + 2016-03-05 17:40 dimitr + M src/common/CRC32C.cpp + M src/common/classes/Hash.cpp + M src/common/classes/Hash.h + M src/common/db_alias.cpp + M src/jrd/Mapping.cpp + M src/jrd/dfw.epp + M src/jrd/lck.cpp + M src/jrd/recsrc/HashJoin.cpp + M src/lock/lock.cpp +Misc refactoring: +1) Renamed Hash class to HashTable +2) Reversed data/length arguments +3) Moved hash() routine to its own class/namespace +4) Fixed the license text + + 2016-03-05 13:03 aafemt + M src/common/config/config.h +Correction + + 2016-03-05 12:28 aafemt + M builds/posix/make.rules + M builds/posix/prefix.linux + M builds/posix/prefix.linux_amd64 + M builds/win32/msvc10/common.vcxproj + M builds/win32/msvc10/common.vcxproj.filters + M builds/win32/msvc12/common.vcxproj + M builds/win32/msvc12/common.vcxproj.filters + A src/common/CRC32C.cpp + A src/common/classes/Hash.cpp + M src/common/classes/Hash.h + M src/jrd/lck.cpp + M src/jrd/recsrc/HashJoin.cpp + M src/lock/lock.cpp + M src/lock/print.cpp +Optimized hash function for lock manager and hash join + + 2016-03-05 03:39 asfernandes + M src/gpre/c_cxx.cpp +Make the generated code compatible with gcc 6 in C++-14 mode. + 2016-03-04 09:00 paul_reeves M builds/install/arch-specific/win32/BuildExecutableInstall.bat M builds/install/arch-specific/win32/FirebirdInstallEnvironmentChecks.inc Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2016-03-05 17:40:49 UTC (rev 63098) +++ firebird/trunk/src/jrd/build_no.h 2016-03-06 00:09:35 UTC (rev 63099) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:32379 + FORMAL BUILD NUMBER:32383 */ -#define PRODUCT_VER_STRING "4.0.0.32379" -#define FILE_VER_STRING "WI-T4.0.0.32379" -#define LICENSE_VER_STRING "WI-T4.0.0.32379" -#define FILE_VER_NUMBER 4, 0, 0, 32379 +#define PRODUCT_VER_STRING "4.0.0.32383" +#define FILE_VER_STRING "WI-T4.0.0.32383" +#define LICENSE_VER_STRING "WI-T4.0.0.32383" +#define FILE_VER_NUMBER 4, 0, 0, 32383 #define FB_MAJOR_VER "4" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "32379" +#define FB_BUILD_NO "32383" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 4.0 Unstable" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2016-03-05 17:40:49 UTC (rev 63098) +++ firebird/trunk/src/misc/writeBuildNum.sh 2016-03-06 00:09:35 UTC (rev 63099) @@ -9,7 +9,7 @@ MajorVer=4 MinorVer=0 RevNo=0 -BuildNum=32379 +BuildNum=32383 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |