~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_parse.cc

Merged from Monty

Show diffs side-by-side

added added

removed removed

Lines of Context:
66
66
/* Prototypes */
67
67
bool my_yyoverflow(short **a, YYSTYPE **b, ulong *yystacksize);
68
68
static bool parse_sql(Session *session, Lex_input_stream *lip);
69
 
static void mysql_parse(Session *session, const char *inBuf, uint32_t length);
 
69
void mysql_parse(Session *session, const char *inBuf, uint32_t length);
70
70
 
71
71
/**
72
72
  @defgroup Runtime_Environment Runtime Environment
738
738
  @param       length  Length of the query text
739
739
*/
740
740
 
741
 
static void mysql_parse(Session *session, const char *inBuf, uint32_t length)
 
741
void mysql_parse(Session *session, const char *inBuf, uint32_t length)
742
742
{
743
743
  lex_start(session);
744
744
  session->reset_for_next_command();