~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_update.cc

  • Committer: Brian Aker
  • Date: 2008-07-18 18:55:10 UTC
  • mfrom: (177.1.5 drizzle)
  • Revision ID: brian@tangent.org-20080718185510-o5nnn7g5ub81llqr
Head merge.

Show diffs side-by-side

added added

removed removed

Lines of Context:
758
758
bool mysql_prepare_update(THD *thd, TABLE_LIST *table_list,
759
759
                         Item **conds, uint order_num, ORDER *order)
760
760
{
761
 
  Item *fake_conds= 0;
762
761
  List<Item> all_fields;
763
762
  SELECT_LEX *select_lex= &thd->lex->select_lex;
764
763
  
799
798
      return(true);
800
799
    }
801
800
  }
802
 
  select_lex->fix_prepare_information(thd, conds, &fake_conds);
 
801
 
803
802
  return(false);
804
803
}
805
804