8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-22 20:03:02 +01:00
This commit is contained in:
asfernandes 2009-01-29 17:44:21 +00:00
parent e13ea43023
commit f4fbdffe07
5 changed files with 5 additions and 4 deletions

View File

@ -45,7 +45,7 @@ SQL EXECUTION RESULTS
conform to the SQL standard. Starting with Firebird 2.5, only OLD column
values are accessible to all the assignments of the SET clause.
You can revert back to the legacy behavior via the OldSetClauseSemantics
parameter of firebird.conf, if required. Please beware that this parameter
parameter of firebird.conf, if required. Please be aware that this parameter
is provided as a temporary solution for backward compatibility issues and
will be deprecated in future Firebird versions.

View File

@ -75,7 +75,7 @@ const UCHAR TAG_RECORD = MAX_UCHAR;
DatabaseSnapshot::SharedData::SharedData(const Database* dbb)
: process_id(getpid()), local_id(dbb->dbb_monitoring_id)
{
Firebird::string name;
string name;
name.printf(MONITOR_FILE, dbb->getUniqueFileId().c_str());
ISC_STATUS_ARRAY statusVector;

View File

@ -399,6 +399,7 @@ void EventManager::postEvent(USHORT major_length, const TEXT* major_code,
evnt* event;
evnt* const parent = find_event(major_length, major_code, 0);
if (parent && (event = find_event(minor_length, minor_code, parent)))
{
event->evnt_count += count;

View File

@ -35,7 +35,7 @@ namespace Jrd {
class Database;
class EventManager: public Firebird::RefCounted, public Firebird::GlobalStorage
class EventManager : public Firebird::RefCounted, public Firebird::GlobalStorage
{
typedef Firebird::GenericMap<Firebird::Pair<Firebird::Left<Firebird::string, EventManager*> > > DbEventMgrMap;