~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref.cc

* Changes Session::warn_id to Session::warn_query_id
* Makes Session::query_id and Session::warn_query_id private members
* Adds getters and setters for above members
* Changes ReplicationServices::initTransactionMessage() to use
  Session::getQueryId() instead of Session::getTransactionId()

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 */
19
19
 
20
20
#include "config.h"
21
 
 
 
21
#include CSTDINT_H
22
22
#include "drizzled/session.h"
23
23
#include "drizzled/error.h"
24
24
#include "drizzled/show.h"
26
26
#include "drizzled/plugin/client.h"
27
27
#include "drizzled/item/sum.h"
28
28
 
29
 
namespace drizzled
30
 
{
 
29
using namespace drizzled;
31
30
 
32
31
Item_ref::Item_ref(Name_resolution_context *context_arg,
33
32
                   Item **item, const char *table_name_arg,
576
575
    depended_from= NULL;
577
576
  }
578
577
}
579
 
 
580
 
} /* namespace drizzled */