From: <fir...@us...> - 2016-01-25 00:10:00
|
Revision: 62855 http://sourceforge.net/p/firebird/code/62855 Author: firebirds Date: 2016-01-25 00:09:57 +0000 (Mon, 25 Jan 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-01-24 21:14:18 UTC (rev 62854) +++ firebird/trunk/ChangeLog 2016-01-25 00:09:57 UTC (rev 62855) @@ -1,3 +1,44 @@ + 2016-01-24 21:14 dimitr + M src/jrd/Attachment.cpp + M src/jrd/Attachment.h + M src/jrd/Database.h + M src/jrd/JrdStatement.cpp + M src/jrd/Monitoring.cpp + M src/jrd/Monitoring.h + M src/jrd/RuntimeStatistics.h + M src/jrd/cch.cpp + M src/jrd/exe.cpp + M src/jrd/jrd.cpp + M src/jrd/jrd.h + M src/jrd/sort.cpp +This should fix the races while accessing the relation statistics inside dbb_stats. Reads/writes/fetches/marks are incremented (CCH) and read (INF) unprotected, as it's crash safe and read skews are acceptable. Other counters (both global and relation wise) are protected with a mutex. They're incremented on demand based on the attachment counters (via diffs). While being there, cleaned up the currently unused performance counters. + + 2016-01-24 21:02 dimitr + M src/lock/lock.cpp +Reverted back to the single-pass algorithm used in v2.x. This should work around the issue with non-zero-timeout shutdown in SC. + + 2016-01-24 17:58 alexpeshkoff + M src/common/classes/GetPlugins.h + M src/common/security.cpp + M src/common/security.h + M src/jrd/extds/ExtDS.cpp + M src/jrd/extds/ExtDS.h + M src/jrd/extds/InternalDS.cpp + M src/jrd/extds/InternalDS.h + M src/jrd/extds/IscDS.cpp + M src/jrd/extds/IscDS.h + M src/remote/remot_proto.h + M src/remote/remote.cpp +Fixed CORE-5082: Server does not validate correctness of user/password pair provided in EXECUTE STATEMENT operator + + 2016-01-24 17:53 alexpeshkoff + M src/remote/client/interface.cpp +Use correct error code + + 2016-01-24 17:51 alexpeshkoff + M src/include/firebird/FirebirdInterface.idl +Drop old wrong comment + 2016-01-21 11:00 hvlad M src/jrd/blb.cpp Fixed bug CORE-5078 : "Invalid BLOB ID" error Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2016-01-24 21:14:18 UTC (rev 62854) +++ firebird/trunk/src/jrd/build_no.h 2016-01-25 00:09:57 UTC (rev 62855) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:32284 + FORMAL BUILD NUMBER:32289 */ -#define PRODUCT_VER_STRING "3.0.0.32284" -#define FILE_VER_STRING "WI-V3.0.0.32284" -#define LICENSE_VER_STRING "WI-V3.0.0.32284" -#define FILE_VER_NUMBER 3, 0, 0, 32284 +#define PRODUCT_VER_STRING "3.0.0.32289" +#define FILE_VER_STRING "WI-V3.0.0.32289" +#define LICENSE_VER_STRING "WI-V3.0.0.32289" +#define FILE_VER_NUMBER 3, 0, 0, 32289 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "32284" +#define FB_BUILD_NO "32289" #define FB_BUILD_TYPE "V" #define FB_BUILD_SUFFIX "Firebird 3.0 Release Candidate 2" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2016-01-24 21:14:18 UTC (rev 62854) +++ firebird/trunk/src/misc/writeBuildNum.sh 2016-01-25 00:09:57 UTC (rev 62855) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=32284 +BuildNum=32289 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |