From: <fir...@us...> - 2016-02-25 00:09:03
|
Revision: 63015 http://sourceforge.net/p/firebird/code/63015 Author: firebirds Date: 2016-02-25 00:09:00 +0000 (Thu, 25 Feb 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-02-24 20:11:34 UTC (rev 63014) +++ firebird/trunk/ChangeLog 2016-02-25 00:09:00 UTC (rev 63015) @@ -1,3 +1,13 @@ + 2016-02-24 20:11 dimitr + M src/dsql/ExprNodes.cpp + M src/dsql/ExprNodes.h + M src/jrd/Optimizer.cpp +Checking the datatype at compile time is unreliable: some nodes return one type at compile time and another type at runtime, thus causing unexpectedly missing casts. I'm moving the check to runtime, this should fix the remaining regressions (fingers crossed). + + 2016-02-24 15:32 alexpeshkoff + A doc/Using_OO_API.html +Started work on new API docs + 2016-02-23 20:49 aafemt M src/dsql/dsql.cpp Get secondary error code isc_dsql_sqlda_err back, thanks to Dmitry Yemanov Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2016-02-24 20:11:34 UTC (rev 63014) +++ firebird/trunk/src/jrd/build_no.h 2016-02-25 00:09:00 UTC (rev 63015) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:32356 + FORMAL BUILD NUMBER:32358 */ -#define PRODUCT_VER_STRING "3.0.0.32356" -#define FILE_VER_STRING "WI-V3.0.0.32356" -#define LICENSE_VER_STRING "WI-V3.0.0.32356" -#define FILE_VER_NUMBER 3, 0, 0, 32356 +#define PRODUCT_VER_STRING "3.0.0.32358" +#define FILE_VER_STRING "WI-V3.0.0.32358" +#define LICENSE_VER_STRING "WI-V3.0.0.32358" +#define FILE_VER_NUMBER 3, 0, 0, 32358 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "32356" +#define FB_BUILD_NO "32358" #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-02-24 20:11:34 UTC (rev 63014) +++ firebird/trunk/src/misc/writeBuildNum.sh 2016-02-25 00:09:00 UTC (rev 63015) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=32356 +BuildNum=32358 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |