mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-31 06:43:02 +01:00
635 lines
17 KiB
C++
635 lines
17 KiB
C++
/*
|
|
* PROGRAM: Dynamic SQL runtime support
|
|
* MODULE: gen.cpp
|
|
* DESCRIPTION: Routines to generate BLR.
|
|
*
|
|
* The contents of this file are subject to the Interbase Public
|
|
* License Version 1.0 (the "License"); you may not use this file
|
|
* except in compliance with the License. You may obtain a copy
|
|
* of the License at http://www.Inprise.com/IPL.html
|
|
*
|
|
* Software distributed under the License is distributed on an
|
|
* "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, either express
|
|
* or implied. See the License for the specific language governing
|
|
* rights and limitations under the License.
|
|
*
|
|
* The Original Code was created by Inprise Corporation
|
|
* and its predecessors. Portions created by Inprise Corporation are
|
|
* Copyright (C) Inprise Corporation.
|
|
*
|
|
* All Rights Reserved.
|
|
* Contributor(s): ______________________________________
|
|
* 2001.6.21 Claudio Valderrama: BREAK and SUBSTRING.
|
|
* 2001.07.28 John Bellardo: Added code to generate blr_skip.
|
|
* 2002.07.30 Arno Brinkman: Added code, procedures to generate COALESCE, CASE
|
|
* 2002.09.28 Dmitry Yemanov: Reworked internal_info stuff, enhanced
|
|
* exception handling in SPs/triggers,
|
|
* implemented ROWS_AFFECTED system variable
|
|
* 2002.10.21 Nickolay Samofatov: Added support for explicit pessimistic locks
|
|
* 2002.10.29 Nickolay Samofatov: Added support for savepoints
|
|
* 2003.10.05 Dmitry Yemanov: Added support for explicit cursors in PSQL
|
|
* 2004.01.16 Vlad Horsun: Added support for default parameters and
|
|
* EXECUTE BLOCK statement
|
|
* Adriano dos Santos Fernandes
|
|
*/
|
|
|
|
#include "firebird.h"
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include "../dsql/dsql.h"
|
|
#include "../dsql/DdlNodes.h"
|
|
#include "../dsql/ExprNodes.h"
|
|
#include "../dsql/StmtNodes.h"
|
|
#include "../jrd/RecordSourceNodes.h"
|
|
#include "../jrd/ibase.h"
|
|
#include "../jrd/align.h"
|
|
#include "../jrd/constants.h"
|
|
#include "../jrd/intl.h"
|
|
#include "../jrd/jrd.h"
|
|
#include "../jrd/val.h"
|
|
#include "../dsql/ddl_proto.h"
|
|
#include "../dsql/errd_proto.h"
|
|
#include "../dsql/gen_proto.h"
|
|
#include "../dsql/make_proto.h"
|
|
#include "../dsql/metd_proto.h"
|
|
#include "../dsql/utld_proto.h"
|
|
#include "../jrd/thread_proto.h"
|
|
#include "../common/dsc_proto.h"
|
|
#include "../yvalve/why_proto.h"
|
|
#include "gen/iberror.h"
|
|
#include "../common/StatusArg.h"
|
|
|
|
using namespace Jrd;
|
|
using namespace Firebird;
|
|
|
|
static void gen_plan(DsqlCompilerScratch*, const PlanNode*);
|
|
|
|
|
|
void GEN_hidden_variables(DsqlCompilerScratch* dsqlScratch)
|
|
{
|
|
/**************************************
|
|
*
|
|
* G E N _ h i d d e n _ v a r i a b l e s
|
|
*
|
|
**************************************
|
|
*
|
|
* Function
|
|
* Emit BLR for hidden variables.
|
|
*
|
|
**************************************/
|
|
if (dsqlScratch->hiddenVariables.isEmpty())
|
|
return;
|
|
|
|
for (Array<dsql_var*>::const_iterator i = dsqlScratch->hiddenVariables.begin();
|
|
i != dsqlScratch->hiddenVariables.end();
|
|
++i)
|
|
{
|
|
const dsql_var* var = *i;
|
|
dsqlScratch->appendUChar(blr_dcl_variable);
|
|
dsqlScratch->appendUShort(var->number);
|
|
GEN_descriptor(dsqlScratch, &var->desc, true);
|
|
}
|
|
|
|
// Clear it for GEN_expr not regenerate them.
|
|
dsqlScratch->hiddenVariables.clear();
|
|
}
|
|
|
|
|
|
/**
|
|
|
|
GEN_expr
|
|
|
|
@brief Generate blr for an arbitrary expression.
|
|
|
|
|
|
@param dsqlScratch
|
|
@param node
|
|
|
|
**/
|
|
void GEN_expr(DsqlCompilerScratch* dsqlScratch, ExprNode* node)
|
|
{
|
|
RseNode* rseNode = node->as<RseNode>();
|
|
if (rseNode)
|
|
{
|
|
GEN_rse(dsqlScratch, rseNode);
|
|
return;
|
|
}
|
|
|
|
node->genBlr(dsqlScratch);
|
|
|
|
// Check whether the node we just processed is for a dialect 3
|
|
// operation which gives a different result than the corresponding
|
|
// operation in dialect 1. If it is, and if the client dialect is 2,
|
|
// issue a warning about the difference.
|
|
|
|
// ASF: Shouldn't we check nod_gen_id2 too?
|
|
|
|
if (node->kind == DmlNode::KIND_VALUE && node->dsqlCompatDialectVerb &&
|
|
dsqlScratch->clientDialect == SQL_DIALECT_V6_TRANSITION)
|
|
{
|
|
dsc desc;
|
|
MAKE_desc(dsqlScratch, &desc, static_cast<ValueExprNode*>(node));
|
|
|
|
if (desc.dsc_dtype == dtype_int64)
|
|
{
|
|
ERRD_post_warning(
|
|
Arg::Warning(isc_dsql_dialect_warning_expr) <<
|
|
Arg::Str(node->dsqlCompatDialectVerb));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
|
|
GEN_port
|
|
|
|
@brief Generate a port from a message. Feel free to rearrange the
|
|
order of parameters.
|
|
|
|
|
|
@param dsqlScratch
|
|
@param message
|
|
|
|
**/
|
|
void GEN_port(DsqlCompilerScratch* dsqlScratch, dsql_msg* message)
|
|
{
|
|
thread_db* tdbb = JRD_get_thread_data();
|
|
|
|
dsqlScratch->appendUChar(blr_message);
|
|
dsqlScratch->appendUChar(message->msg_number);
|
|
dsqlScratch->appendUShort(message->msg_parameter);
|
|
|
|
ULONG offset = 0;
|
|
|
|
for (size_t i = 0; i < message->msg_parameters.getCount(); ++i)
|
|
{
|
|
dsql_par* parameter = message->msg_parameters[i];
|
|
|
|
parameter->par_parameter = (USHORT) i;
|
|
|
|
const USHORT fromCharSet = parameter->par_desc.getCharSet();
|
|
const USHORT toCharSet = (fromCharSet == CS_NONE || fromCharSet == CS_BINARY) ?
|
|
fromCharSet : tdbb->getCharSet();
|
|
|
|
if (parameter->par_desc.dsc_dtype <= dtype_any_text &&
|
|
tdbb->getCharSet() != CS_NONE && tdbb->getCharSet() != CS_BINARY)
|
|
{
|
|
USHORT adjust = 0;
|
|
if (parameter->par_desc.dsc_dtype == dtype_varying)
|
|
adjust = sizeof(USHORT);
|
|
else if (parameter->par_desc.dsc_dtype == dtype_cstring)
|
|
adjust = 1;
|
|
|
|
parameter->par_desc.dsc_length -= adjust;
|
|
|
|
const USHORT fromCharSetBPC = METD_get_charset_bpc(dsqlScratch->getTransaction(), fromCharSet);
|
|
const USHORT toCharSetBPC = METD_get_charset_bpc(dsqlScratch->getTransaction(), toCharSet);
|
|
|
|
parameter->par_desc.setTextType(INTL_CS_COLL_TO_TTYPE(toCharSet,
|
|
(fromCharSet == toCharSet ? INTL_GET_COLLATE(¶meter->par_desc) : 0)));
|
|
|
|
parameter->par_desc.dsc_length = UTLD_char_length_to_byte_length(
|
|
parameter->par_desc.dsc_length / fromCharSetBPC, toCharSetBPC, adjust);
|
|
|
|
parameter->par_desc.dsc_length += adjust;
|
|
}
|
|
else if (parameter->par_desc.dsc_dtype == dtype_blob &&
|
|
parameter->par_desc.dsc_sub_type == isc_blob_text &&
|
|
tdbb->getCharSet() != CS_NONE && tdbb->getCharSet() != CS_BINARY)
|
|
{
|
|
if (fromCharSet != toCharSet)
|
|
parameter->par_desc.setTextType(toCharSet);
|
|
}
|
|
|
|
if (parameter->par_desc.dsc_dtype == dtype_text && parameter->par_index != 0)
|
|
{
|
|
// We should convert par_desc from text to varying so the user can receive it with
|
|
// correct length when requesting it as varying. See CORE-2606.
|
|
// But we flag it to describe as text.
|
|
parameter->par_is_text = true;
|
|
parameter->par_desc.dsc_dtype = dtype_varying;
|
|
parameter->par_desc.dsc_length += sizeof(USHORT);
|
|
}
|
|
|
|
const USHORT align = type_alignments[parameter->par_desc.dsc_dtype];
|
|
if (align)
|
|
offset = FB_ALIGN(offset, align);
|
|
parameter->par_desc.dsc_address = (UCHAR*)(IPTR) offset;
|
|
offset += parameter->par_desc.dsc_length;
|
|
GEN_descriptor(dsqlScratch, ¶meter->par_desc, true);
|
|
}
|
|
|
|
message->msg_length = offset;
|
|
|
|
dsqlScratch->ports.add(message);
|
|
}
|
|
|
|
|
|
// Generate complete blr for a dsqlScratch.
|
|
void GEN_request(DsqlCompilerScratch* scratch, DmlNode* node)
|
|
{
|
|
DsqlCompiledStatement* statement = scratch->getStatement();
|
|
|
|
if (statement->getBlrVersion() == 4)
|
|
scratch->appendUChar(blr_version4);
|
|
else
|
|
scratch->appendUChar(blr_version5);
|
|
|
|
if (statement->getType() == DsqlCompiledStatement::TYPE_SAVEPOINT)
|
|
{
|
|
// Do not generate BEGIN..END block around savepoint statement
|
|
// to avoid breaking of savepoint logic
|
|
statement->setSendMsg(NULL);
|
|
statement->setReceiveMsg(NULL);
|
|
node->genBlr(scratch);
|
|
}
|
|
else
|
|
{
|
|
const bool block = statement->getType() == DsqlCompiledStatement::TYPE_EXEC_BLOCK ||
|
|
statement->getType() == DsqlCompiledStatement::TYPE_SELECT_BLOCK;
|
|
|
|
// To parse sub-routines messages, they must not have that begin...end pair.
|
|
// And since it appears to be unnecessary for execute block too, do not generate them.
|
|
if (!block)
|
|
scratch->appendUChar(blr_begin);
|
|
|
|
GEN_hidden_variables(scratch);
|
|
|
|
switch (statement->getType())
|
|
{
|
|
case DsqlCompiledStatement::TYPE_SELECT:
|
|
case DsqlCompiledStatement::TYPE_SELECT_UPD:
|
|
case DsqlCompiledStatement::TYPE_EXEC_BLOCK:
|
|
case DsqlCompiledStatement::TYPE_SELECT_BLOCK:
|
|
node->genBlr(scratch);
|
|
break;
|
|
default:
|
|
{
|
|
dsql_msg* message = statement->getSendMsg();
|
|
if (!message->msg_parameter)
|
|
statement->setSendMsg(NULL);
|
|
else
|
|
{
|
|
GEN_port(scratch, message);
|
|
scratch->appendUChar(blr_receive);
|
|
scratch->appendUChar(message->msg_number);
|
|
}
|
|
message = statement->getReceiveMsg();
|
|
if (!message->msg_parameter)
|
|
statement->setReceiveMsg(NULL);
|
|
else
|
|
GEN_port(scratch, message);
|
|
node->genBlr(scratch);
|
|
}
|
|
}
|
|
|
|
if (!block)
|
|
scratch->appendUChar(blr_end);
|
|
}
|
|
|
|
scratch->appendUChar(blr_eoc);
|
|
}
|
|
|
|
|
|
/**
|
|
|
|
GEN_descriptor
|
|
|
|
@brief Generate a blr descriptor from an internal descriptor.
|
|
|
|
|
|
@param dsqlScratch
|
|
@param desc
|
|
@param texttype
|
|
|
|
**/
|
|
void GEN_descriptor( DsqlCompilerScratch* dsqlScratch, const dsc* desc, bool texttype)
|
|
{
|
|
switch (desc->dsc_dtype)
|
|
{
|
|
case dtype_text:
|
|
if (texttype || desc->dsc_ttype() == ttype_binary || desc->dsc_ttype() == ttype_none)
|
|
{
|
|
dsqlScratch->appendUChar(blr_text2);
|
|
dsqlScratch->appendUShort(desc->dsc_ttype());
|
|
}
|
|
else
|
|
{
|
|
dsqlScratch->appendUChar(blr_text2); // automatic transliteration
|
|
dsqlScratch->appendUShort(ttype_dynamic);
|
|
}
|
|
|
|
dsqlScratch->appendUShort(desc->dsc_length);
|
|
break;
|
|
|
|
case dtype_varying:
|
|
if (texttype || desc->dsc_ttype() == ttype_binary || desc->dsc_ttype() == ttype_none)
|
|
{
|
|
dsqlScratch->appendUChar(blr_varying2);
|
|
dsqlScratch->appendUShort(desc->dsc_ttype());
|
|
}
|
|
else
|
|
{
|
|
dsqlScratch->appendUChar(blr_varying2); // automatic transliteration
|
|
dsqlScratch->appendUShort(ttype_dynamic);
|
|
}
|
|
dsqlScratch->appendUShort(desc->dsc_length - sizeof(USHORT));
|
|
break;
|
|
|
|
case dtype_short:
|
|
dsqlScratch->appendUChar(blr_short);
|
|
dsqlScratch->appendUChar(desc->dsc_scale);
|
|
break;
|
|
|
|
case dtype_long:
|
|
dsqlScratch->appendUChar(blr_long);
|
|
dsqlScratch->appendUChar(desc->dsc_scale);
|
|
break;
|
|
|
|
case dtype_quad:
|
|
dsqlScratch->appendUChar(blr_quad);
|
|
dsqlScratch->appendUChar(desc->dsc_scale);
|
|
break;
|
|
|
|
case dtype_int64:
|
|
dsqlScratch->appendUChar(blr_int64);
|
|
dsqlScratch->appendUChar(desc->dsc_scale);
|
|
break;
|
|
|
|
case dtype_real:
|
|
dsqlScratch->appendUChar(blr_float);
|
|
break;
|
|
|
|
case dtype_double:
|
|
dsqlScratch->appendUChar(blr_double);
|
|
break;
|
|
|
|
case dtype_sql_date:
|
|
dsqlScratch->appendUChar(blr_sql_date);
|
|
break;
|
|
|
|
case dtype_sql_time:
|
|
dsqlScratch->appendUChar(blr_sql_time);
|
|
break;
|
|
|
|
case dtype_timestamp:
|
|
dsqlScratch->appendUChar(blr_timestamp);
|
|
break;
|
|
|
|
case dtype_array:
|
|
dsqlScratch->appendUChar(blr_quad);
|
|
dsqlScratch->appendUChar(0);
|
|
break;
|
|
|
|
case dtype_blob:
|
|
dsqlScratch->appendUChar(blr_blob2);
|
|
dsqlScratch->appendUShort(desc->dsc_sub_type);
|
|
dsqlScratch->appendUShort(desc->getTextType());
|
|
break;
|
|
|
|
case dtype_boolean:
|
|
dsqlScratch->appendUChar(blr_bool);
|
|
break;
|
|
|
|
default:
|
|
// don't understand dtype
|
|
ERRD_post(Arg::Gds(isc_sqlerr) << Arg::Num(-804) <<
|
|
Arg::Gds(isc_dsql_datatype_err));
|
|
}
|
|
}
|
|
|
|
|
|
// Generate a parameter reference.
|
|
void GEN_parameter( DsqlCompilerScratch* dsqlScratch, const dsql_par* parameter)
|
|
{
|
|
const dsql_msg* message = parameter->par_message;
|
|
|
|
const dsql_par* null = parameter->par_null;
|
|
if (null != NULL)
|
|
{
|
|
dsqlScratch->appendUChar(blr_parameter2);
|
|
dsqlScratch->appendUChar(message->msg_number);
|
|
dsqlScratch->appendUShort(parameter->par_parameter);
|
|
dsqlScratch->appendUShort(null->par_parameter);
|
|
return;
|
|
}
|
|
|
|
dsqlScratch->appendUChar(blr_parameter);
|
|
dsqlScratch->appendUChar(message->msg_number);
|
|
dsqlScratch->appendUShort(parameter->par_parameter);
|
|
}
|
|
|
|
|
|
|
|
// Generate blr for an access plan expression.
|
|
static void gen_plan(DsqlCompilerScratch* dsqlScratch, const PlanNode* planNode)
|
|
{
|
|
// stuff the join type
|
|
|
|
const Array<NestConst<PlanNode> >& list = planNode->subNodes;
|
|
|
|
if (list.getCount() > 1)
|
|
{
|
|
dsqlScratch->appendUChar(blr_join);
|
|
dsqlScratch->appendUChar(list.getCount());
|
|
}
|
|
|
|
// stuff one or more plan items
|
|
|
|
for (const NestConst<PlanNode>* ptr = list.begin(); ptr != list.end(); ++ptr)
|
|
{
|
|
const PlanNode* node = *ptr;
|
|
|
|
if (node->subNodes.hasData())
|
|
{
|
|
gen_plan(dsqlScratch, node);
|
|
continue;
|
|
}
|
|
|
|
// if we're here, it must be a nod_plan_item
|
|
|
|
dsqlScratch->appendUChar(blr_retrieve);
|
|
|
|
// stuff the relation -- the relation id itself is redundant except
|
|
// when there is a need to differentiate the base tables of views
|
|
|
|
// ASF: node->dsqlRecordSourceNode may be NULL, and then a BLR error will happen.
|
|
// Example command: select * from (select * from t1) a plan (a natural);
|
|
if (node->dsqlRecordSourceNode)
|
|
node->dsqlRecordSourceNode->genBlr(dsqlScratch);
|
|
|
|
// now stuff the access method for this stream
|
|
|
|
unsigned delta = 0;
|
|
|
|
switch (node->accessType->type)
|
|
{
|
|
case PlanNode::AccessType::TYPE_SEQUENTIAL:
|
|
dsqlScratch->appendUChar(blr_sequential);
|
|
break;
|
|
|
|
case PlanNode::AccessType::TYPE_NAVIGATIONAL:
|
|
dsqlScratch->appendUChar(blr_navigational);
|
|
dsqlScratch->appendNullString(node->accessType->items[0].indexName.c_str());
|
|
if (node->accessType->items.getCount() == 1)
|
|
break;
|
|
// dimitr: FALL INTO, if the plan item is ORDER ... INDEX (...)
|
|
// ASF: The first item of a TYPE_NAVIGATIONAL is not for blr_indices.
|
|
++delta;
|
|
|
|
case PlanNode::AccessType::TYPE_INDICES:
|
|
{
|
|
dsqlScratch->appendUChar(blr_indices);
|
|
dsqlScratch->appendUChar(node->accessType->items.getCount() - delta);
|
|
|
|
const ObjectsArray<PlanNode::AccessItem>& items = node->accessType->items;
|
|
|
|
for (ObjectsArray<PlanNode::AccessItem>::const_iterator ptr2 = items.begin();
|
|
ptr2 != items.end();
|
|
++ptr2)
|
|
{
|
|
if (delta > 0)
|
|
--delta;
|
|
else
|
|
dsqlScratch->appendNullString(ptr2->indexName.c_str());
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
default:
|
|
fb_assert(false);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
|
|
GEN_rse
|
|
|
|
@brief Generate a record selection expression.
|
|
|
|
|
|
@param dsqlScratch
|
|
@param rse
|
|
|
|
**/
|
|
void GEN_rse(DsqlCompilerScratch* dsqlScratch, RseNode* rse)
|
|
{
|
|
if (rse->dsqlFlags & RecordSourceNode::DFLAG_SINGLETON)
|
|
dsqlScratch->appendUChar(blr_singular);
|
|
|
|
if (rse->dsqlExplicitJoin)
|
|
{
|
|
dsqlScratch->appendUChar(blr_rs_stream);
|
|
fb_assert(rse->dsqlStreams->items.getCount() == 2);
|
|
}
|
|
else
|
|
dsqlScratch->appendUChar(blr_rse);
|
|
|
|
// Handle source streams
|
|
|
|
dsqlScratch->appendUChar(rse->dsqlStreams->items.getCount());
|
|
NestConst<RecordSourceNode>* ptr = rse->dsqlStreams->items.begin();
|
|
for (const NestConst<RecordSourceNode>* const end = rse->dsqlStreams->items.end(); ptr != end; ++ptr)
|
|
GEN_expr(dsqlScratch, *ptr);
|
|
|
|
if (rse->flags & RseNode::FLAG_WRITELOCK)
|
|
dsqlScratch->appendUChar(blr_writelock);
|
|
|
|
if (rse->dsqlFirst)
|
|
{
|
|
dsqlScratch->appendUChar(blr_first);
|
|
GEN_expr(dsqlScratch, rse->dsqlFirst);
|
|
}
|
|
|
|
if (rse->dsqlSkip)
|
|
{
|
|
dsqlScratch->appendUChar(blr_skip);
|
|
GEN_expr(dsqlScratch, rse->dsqlSkip);
|
|
}
|
|
|
|
if (rse->rse_jointype != blr_inner)
|
|
{
|
|
dsqlScratch->appendUChar(blr_join_type);
|
|
dsqlScratch->appendUChar(rse->rse_jointype);
|
|
}
|
|
|
|
if (rse->dsqlWhere)
|
|
{
|
|
dsqlScratch->appendUChar(blr_boolean);
|
|
GEN_expr(dsqlScratch, rse->dsqlWhere);
|
|
}
|
|
|
|
if (rse->dsqlOrder)
|
|
GEN_sort(dsqlScratch, rse->dsqlOrder);
|
|
|
|
if (rse->dsqlDistinct)
|
|
{
|
|
dsqlScratch->appendUChar(blr_project);
|
|
dsqlScratch->appendUChar(rse->dsqlDistinct->items.getCount());
|
|
|
|
NestConst<ValueExprNode>* ptr = rse->dsqlDistinct->items.begin();
|
|
|
|
for (const NestConst<ValueExprNode>* const end = rse->dsqlDistinct->items.end(); ptr != end; ++ptr)
|
|
GEN_expr(dsqlScratch, *ptr);
|
|
}
|
|
|
|
// if the user specified an access plan to use, add it here
|
|
|
|
if (rse->rse_plan)
|
|
{
|
|
dsqlScratch->appendUChar(blr_plan);
|
|
gen_plan(dsqlScratch, rse->rse_plan);
|
|
}
|
|
|
|
dsqlScratch->appendUChar(blr_end);
|
|
}
|
|
|
|
|
|
// Generate a sort clause.
|
|
void GEN_sort(DsqlCompilerScratch* dsqlScratch, ValueListNode* list)
|
|
{
|
|
dsqlScratch->appendUChar(blr_sort);
|
|
dsqlScratch->appendUChar(list->items.getCount());
|
|
|
|
NestConst<ValueExprNode>* ptr = list->items.begin();
|
|
for (const NestConst<ValueExprNode>* const end = list->items.end(); ptr != end; ++ptr)
|
|
{
|
|
OrderNode* orderNode = (*ptr)->as<OrderNode>();
|
|
|
|
switch (orderNode->nullsPlacement)
|
|
{
|
|
case OrderNode::NULLS_FIRST:
|
|
dsqlScratch->appendUChar(blr_nullsfirst);
|
|
break;
|
|
case OrderNode::NULLS_LAST:
|
|
dsqlScratch->appendUChar(blr_nullslast);
|
|
break;
|
|
}
|
|
|
|
dsqlScratch->appendUChar((orderNode->descending ? blr_descending : blr_ascending));
|
|
GEN_expr(dsqlScratch, orderNode->value);
|
|
}
|
|
}
|
|
|
|
|
|
// Write a context number into the BLR buffer. Check for possible overflow.
|
|
void GEN_stuff_context(DsqlCompilerScratch* dsqlScratch, const dsql_ctx* context)
|
|
{
|
|
if (context->ctx_context > MAX_UCHAR)
|
|
ERRD_post(Arg::Gds(isc_too_many_contexts));
|
|
|
|
dsqlScratch->appendUChar(context->ctx_context);
|
|
|
|
if (context->ctx_flags & CTX_recursive)
|
|
{
|
|
if (context->ctx_recursive > MAX_UCHAR)
|
|
ERRD_post(Arg::Gds(isc_too_many_contexts));
|
|
|
|
dsqlScratch->appendUChar(context->ctx_recursive);
|
|
}
|
|
}
|