~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/get_user_var.cc

  • Committer: Brian Aker
  • Date: 2010-04-05 23:46:43 UTC
  • Revision ID: brian@gaz-20100405234643-0he3xnj902rc70r8
Fixing tests to work with PBXT.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
18
 */
19
19
 
20
 
#include <drizzled/server_includes.h>
21
 
#include CSTDINT_H
 
20
#include "config.h"
 
21
 
 
22
#include <float.h>
 
23
 
22
24
#include <drizzled/function/get_user_var.h>
23
25
#include <drizzled/item/null.h>
24
26
#include <drizzled/sql_parse.h>
25
27
#include <drizzled/session.h>
26
28
 
27
 
String *
28
 
Item_func_get_user_var::val_str(String *str)
 
29
namespace drizzled
 
30
{
 
31
 
 
32
String *Item_func_get_user_var::val_str(String *str)
29
33
{
30
34
  assert(fixed == 1);
31
35
  if (!var_entry)
114
118
 
115
119
bool Item_func_get_user_var::const_item() const
116
120
{
117
 
  return (!var_entry || current_session->query_id != var_entry->update_query_id);
 
121
  return (!var_entry || current_session->getQueryId() != var_entry->update_query_id);
118
122
}
119
123
 
120
124
 
147
151
  return (name.length == other->name.length &&
148
152
          !memcmp(name.str, other->name.str, name.length));
149
153
}
 
154
 
 
155
} /* namespace drizzled */