~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item/create.cc

  • Committer: Brian Aker
  • Date: 2008-11-22 23:34:06 UTC
  • Revision ID: brian@tangent.org-20081122233406-fj063eeoy2dxvdmh
Removing more options around changing replication

Show diffs side-by-side

added added

removed removed

Lines of Context:
1479
1479
  if (item_list != NULL)
1480
1480
    arg_count= item_list->elements;
1481
1481
 
1482
 
  session->lex->set_stmt_unsafe();
1483
 
 
1484
1482
  func= udf->create_func(session->mem_root);
1485
1483
 
1486
1484
  func->set_arguments(*item_list);
2025
2023
Item*
2026
2024
Create_func_found_rows::create(Session *session)
2027
2025
{
2028
 
  session->lex->set_stmt_unsafe();
2029
2026
  return new (session->mem_root) Item_func_found_rows();
2030
2027
}
2031
2028
 
2600
2597
Item*
2601
2598
Create_func_row_count::create(Session *session)
2602
2599
{
2603
 
  session->lex->set_stmt_unsafe();
2604
2600
  return new (session->mem_root) Item_func_row_count();
2605
2601
}
2606
2602
 
2826
2822
Item*
2827
2823
Create_func_uuid::create(Session *session)
2828
2824
{
2829
 
  session->lex->set_stmt_unsafe();
2830
2825
  return new (session->mem_root) Item_func_uuid();
2831
2826
}
2832
2827