8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 06:03:02 +01:00

Fixed reintroduction of CORE-1379 per Pavel Zotov comment - Invalid parameter type when using it in CHAR_LENGTH function.

This commit is contained in:
asfernandes 2015-04-18 19:19:12 +00:00
parent d73bfd4a5f
commit 3ed87ec404

View File

@ -8695,7 +8695,7 @@ void StrLenNode::setParameterName(dsql_par* parameter) const
bool StrLenNode::setParameterType(DsqlCompilerScratch* dsqlScratch,
const dsc* desc, bool forceVarChar)
{
return PASS1_set_parameter_type(dsqlScratch, arg, desc, forceVarChar);
return false;
}
void StrLenNode::genBlr(DsqlCompilerScratch* dsqlScratch)