From: <fir...@us...> - 2013-06-20 01:05:59
|
Revision: 58212 http://sourceforge.net/p/firebird/code/58212 Author: firebirds Date: 2013-06-20 01:05:54 +0000 (Thu, 20 Jun 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-06-19 16:18:06 UTC (rev 58211) +++ firebird/trunk/ChangeLog 2013-06-20 01:05:54 UTC (rev 58212) @@ -1,3 +1,65 @@ + 2013-06-19 11:46 hvlad + M src/jrd/tra.cpp + M src/jrd/tra.h +Removed allocation of temp transaction object. + + 2013-06-19 09:14 dimitr + M src/jrd/Function.epp + M src/jrd/met.epp +A few corrections, mostly regarding new-style vs legacy UDFs. + + 2013-06-19 09:14 dimitr + M src/burp/restore.epp + M src/dsql/DdlNodes.epp + M src/jrd/dfw.epp +A few corrections, mostly regarding new-style vs legacy UDFs. + + 2013-06-19 06:26 dimitr + M src/dsql/StmtNodes.cpp + M src/jrd/exe.cpp +Attempted to fix a possible crash due to the wrong request pointer remaining in tdbb after sub-request execution. While being there, cleaned up some redundant code. + + 2013-06-19 02:56 asfernandes + M src/jrd/fun.epp +Misc. + + 2013-06-18 18:22 dimitr + M src/burp/backup.epp + M src/burp/burp.h + M src/burp/restore.epp + M src/dsql/DdlNodes.epp + M src/dsql/DdlNodes.h + M src/dsql/parse.y + M src/include/gen/ids.h + M src/jrd/drq.h + M src/jrd/fields.h + M src/jrd/ini.epp + M src/jrd/names.h + M src/jrd/relations.h +Made the ALTER SEQUENCE RESTART behavior standard compliant. + + 2013-06-18 15:50 asfernandes + M examples/udr/UdrCppExample.cpp + M src/common/MsgMetadata.cpp + M src/common/MsgMetadata.h + M src/common/classes/InternalMessageBuffer.cpp + M src/dsql/dsql.cpp + M src/include/firebird/Message.h + M src/include/firebird/Provider.h + M src/jrd/ExtEngineManager.cpp + M src/jrd/PreparedStatement.cpp + M src/jrd/Routine.cpp + M src/remote/client/BlrFromMessage.cpp +Improvements and corrections to message builder and UDR. + + 2013-06-18 13:16 alexpeshkoff + M src/jrd/fun.epp +Fixed CORE-4121: Segfault when engine is shutting down inside blob get/put function invoked from UDF + + 2013-06-18 09:10 alexpeshkoff + M src/jrd/jrd.cpp +Fixed assertion when restoring DB in non-existtent path with overwrite - reported privately by Dmitry + 2013-06-17 01:32 asfernandes M doc/README.interfaces.html M doc/README.providers.html Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-06-19 16:18:06 UTC (rev 58211) +++ firebird/trunk/src/jrd/build_no.h 2013-06-20 01:05:54 UTC (rev 58212) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30453 + FORMAL BUILD NUMBER:30462 */ -#define PRODUCT_VER_STRING "3.0.0.30453" -#define FILE_VER_STRING "WI-T3.0.0.30453" -#define LICENSE_VER_STRING "WI-T3.0.0.30453" -#define FILE_VER_NUMBER 3, 0, 0, 30453 +#define PRODUCT_VER_STRING "3.0.0.30462" +#define FILE_VER_STRING "WI-T3.0.0.30462" +#define LICENSE_VER_STRING "WI-T3.0.0.30462" +#define FILE_VER_NUMBER 3, 0, 0, 30462 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30453" +#define FB_BUILD_NO "30462" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Unstable" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2013-06-19 16:18:06 UTC (rev 58211) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-06-20 01:05:54 UTC (rev 58212) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30453 +BuildNum=30462 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |