8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 02:03:04 +01:00
This commit is contained in:
asfernandes 2010-11-08 14:43:11 +00:00
parent 2ed04ec8a9
commit 447dffa7b1

View File

@ -261,7 +261,7 @@ public:
explicit RelationSourceNode(MemoryPool& pool)
: TypedNode<RecordSourceNode, RecordSourceNode::TYPE_RELATION>(pool),
relation(NULL),
context(NULL),
context(0),
alias(NULL),
view(NULL)
{
@ -326,9 +326,9 @@ public:
: TypedNode<RecordSourceNode, RecordSourceNode::TYPE_PROCEDURE>(pool),
inputs(NULL),
in_msg(NULL),
procedure(NULL),
procedure(0),
view(NULL),
context(NULL)
context(0)
{
}
@ -425,7 +425,7 @@ public:
: TypedNode<RecordSourceNode, RecordSourceNode::TYPE_UNION>(pool),
clauses(pool),
maps(pool),
mapStream(NULL),
mapStream(0),
recursive(false)
{
}