~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/function/get_user_var.cc

  • Committer: Monty Taylor
  • Date: 2011-03-15 16:10:15 UTC
  • mfrom: (2235.3.1 staging)
  • Revision ID: mordred@inaugust.com-20110315161015-qceggirmf3cct7cw
Merge in libdrizzle install changes, doc changes and some header
refactoring.

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 <float.h>
23
23
 
25
25
#include <drizzled/item/null.h>
26
26
#include <drizzled/sql_parse.h>
27
27
#include <drizzled/session.h>
 
28
#include <drizzled/user_var_entry.h>
28
29
 
29
30
namespace drizzled
30
31
{
129
130
}
130
131
 
131
132
 
132
 
void Item_func_get_user_var::print(String *str,
133
 
                                   enum_query_type )
 
133
void Item_func_get_user_var::print(String *str)
134
134
{
135
135
  str->append(STRING_WITH_LEN("(@"));
136
136
  str->append(name.str,name.length);