From: <asf...@us...> - 2015-04-30 15:56:50
|
Revision: 61471 http://sourceforge.net/p/firebird/code/61471 Author: asfernandes Date: 2015-04-30 15:56:47 +0000 (Thu, 30 Apr 2015) Log Message: ----------- Fixed CORE-3234 - Support for text BLOBs >= 32K as first argument for TRIM(). Modified Paths: -------------- firebird/trunk/doc/WhatsNew firebird/trunk/src/dsql/ExprNodes.cpp Modified: firebird/trunk/doc/WhatsNew =================================================================== --- firebird/trunk/doc/WhatsNew 2015-04-30 15:24:12 UTC (rev 61470) +++ firebird/trunk/doc/WhatsNew 2015-04-30 15:56:47 UTC (rev 61471) @@ -296,6 +296,11 @@ Contributor(s): Dmitry Yemanov <dimitr at firebirdsql.org> + * Improvement CORE-3234 + Support for text BLOBs >= 32K as first argument for TRIM() + Contributor(s): + Adriano dos Santos Fernandes <adrianosf at gmail.com> + * Improvement CORE-3226 IPv6 support Contributor(s): @@ -1845,11 +1850,6 @@ Contributor(s): Alex Peshkov <peshkoff at mail.ru> - * Improvement CORE-3234 - Support for text BLOBs >= 32K as first argument for TRIM() - Contributor(s): - Adriano dos Santos Fernandes <adrianosf at gmail.com> - * Improvement CORE-3085 Add clause ALTER DOMAIN <name> {DROP | SET} NOT NULL See also: Modified: firebird/trunk/src/dsql/ExprNodes.cpp =================================================================== --- firebird/trunk/src/dsql/ExprNodes.cpp 2015-04-30 15:24:12 UTC (rev 61470) +++ firebird/trunk/src/dsql/ExprNodes.cpp 2015-04-30 15:56:47 UTC (rev 61471) @@ -10307,7 +10307,7 @@ const UCHAR* charactersAddress; MoveBuffer charactersBuffer; - USHORT charactersLength; + ULONG charactersLength; if (trimCharsDesc) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |