~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/functions/connection_id.h

  • Committer: Monty Taylor
  • Date: 2008-10-20 08:48:34 UTC
  • mfrom: (520.1.22 drizzle)
  • Revision ID: monty@inaugust.com-20081020084834-xpb3w01vkcp55o02
Merged trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
31
31
  Item_func_connection_id() {}
32
32
  const char *func_name() const { return "connection_id"; }
33
33
  void fix_length_and_dec();
34
 
  bool fix_fields(THD *thd, Item **ref);
 
34
  bool fix_fields(Session *session, Item **ref);
35
35
  int64_t val_int() { assert(fixed == 1); return value; }
36
36
  bool check_vcol_func_processor(unsigned char *int_arg __attribute__((unused)))
37
37
  { return true; }