8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-02-02 09:20:39 +01:00
This commit is contained in:
asfernandes 2010-09-18 15:56:54 +00:00
parent 34dd100554
commit 477091ebcc
2 changed files with 2 additions and 2 deletions

View File

@ -1509,7 +1509,7 @@ static RegisterNode<RseBoolNode> regRseBoolNodeAny(blr_any);
static RegisterNode<RseBoolNode> regRseBoolNodeUnique(blr_unique);
static RegisterNode<RseBoolNode> regRseBoolNodeAnsiAny(blr_ansi_any);
static RegisterNode<RseBoolNode> regRseBoolNodeAnsiAll(blr_ansi_all);
static RegisterNode<RseBoolNode> regRseBoolNodeExists(blr_exists); // ASF: Where this is handled?
static RegisterNode<RseBoolNode> regRseBoolNodeExists(blr_exists); // ASF: Where is this handled?
RseBoolNode::RseBoolNode(MemoryPool& pool, UCHAR aBlrOp, dsql_nod* aDsqlRse)
: TypedNode<BoolExprNode, ExprNode::TYPE_RSE_BOOL>(pool),

View File

@ -7872,7 +7872,7 @@ void CreateAlterViewNode::defineUpdateAction(DsqlCompilerScratch* dsqlScratch,
dsql_nod* andNod = MAKE_node(Dsql::nod_class_exprnode, 1);
andNod->nod_arg[0] = reinterpret_cast<dsql_nod*>(andNode);
for (; (ptr < end) && (ptr2 < end2); ptr++, ptr2++)
{
dsql_nod* fieldNode = *ptr;