~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Brian Aker
  • Date: 2011-03-24 23:14:46 UTC
  • mfrom: (2246.4.12 foreach)
  • Revision ID: brian@tangent.org-20110324231446-7q1gydkglys73nft
Merge in XTF

Show diffs side-by-side

added added

removed removed

Lines of Context:
1970
1970
  */
1971
1971
static bool create_table_wrapper(Session &session,
1972
1972
                                 const message::Table& create_table_proto,
1973
 
                                 identifier::Table::const_reference destination_identifier,
1974
 
                                 identifier::Table::const_reference source_identifier,
 
1973
                                 const identifier::Table& destination_identifier,
 
1974
                                 const identifier::Table& source_identifier,
1975
1975
                                 bool is_engine_set)
1976
1976
{
1977
1977
  // We require an additional table message because during parsing we used
2059
2059
*/
2060
2060
 
2061
2061
bool create_like_table(Session* session,
2062
 
                       identifier::Table::const_reference destination_identifier,
2063
 
                       identifier::Table::const_reference source_identifier,
 
2062
                       const identifier::Table& destination_identifier,
 
2063
                       const identifier::Table& source_identifier,
2064
2064
                       message::Table &create_table_proto,
2065
2065
                       bool is_if_not_exists,
2066
2066
                       bool is_engine_set)