~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_lex.cc

  • Committer: Brian Aker
  • Date: 2008-07-20 22:02:56 UTC
  • Revision ID: brian@tangent.org-20080720220256-83c03tqqm1593qdq
Cleanup sql_lex to modern types.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1840
1840
TABLE_LIST *st_select_lex_node::add_table_to_list (THD *thd __attribute__((__unused__)),
1841
1841
                                                   Table_ident *table __attribute__((__unused__)),
1842
1842
                                                  LEX_STRING *alias __attribute__((__unused__)),
1843
 
                                                  ulong table_join_options __attribute__((__unused__)),
 
1843
                                                  uint32_t table_join_options __attribute__((__unused__)),
1844
1844
                                                  thr_lock_type flags __attribute__((__unused__)),
1845
1845
                                                  List<Index_hint> *hints __attribute__((__unused__)),
1846
1846
                                                  LEX_STRING *option __attribute__((__unused__)))
1847
1847
{
1848
1848
  return 0;
1849
1849
}
1850
 
ulong st_select_lex_node::get_table_join_options()
 
1850
uint32_t st_select_lex_node::get_table_join_options()
1851
1851
{
1852
1852
  return 0;
1853
1853
}
1940
1940
  return &item_list;
1941
1941
}
1942
1942
 
1943
 
ulong st_select_lex::get_table_join_options()
 
1943
uint32_t st_select_lex::get_table_join_options()
1944
1944
{
1945
1945
  return table_join_options;
1946
1946
}