~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/ref_null_helper.cc

  • Committer: pcrews
  • Date: 2011-05-24 17:36:24 UTC
  • mfrom: (1099.4.232 drizzle)
  • Revision ID: pcrews@lucid32-20110524173624-mwr1bvq6fa1r01ao
Updated translations + 2011.05.18 tarball tag

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 "config.h"
 
20
#include <config.h>
21
21
 
22
22
#include <drizzled/item/ref.h>
23
23
#include <drizzled/item/ref_null_helper.h>
75
75
  return (owner->was_null|= null_value= (*ref)->get_date(ltime, fuzzydate));
76
76
}
77
77
 
78
 
void Item_ref_null_helper::print(String *str, enum_query_type query_type)
 
78
void Item_ref_null_helper::print(String *str)
79
79
{
80
80
  str->append(STRING_WITH_LEN("<ref_null_helper>("));
81
81
  if (ref)
82
 
    (*ref)->print(str, query_type);
 
82
    (*ref)->print(str);
83
83
  else
84
84
    str->append('?');
85
85
  str->append(')');