~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/named_savepoint.cc

  • Committer: Lee Bieber
  • Date: 2011-03-23 23:16:25 UTC
  • mfrom: (2247.1.2 build)
  • Revision ID: kalebral@gmail.com-20110323231625-61k77qbh7n1iu776
Merge Olaf - Use BOOST_FOREACH
Merge Olaf - Remove std::nothrow from new()

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
  {
30
30
    name.assign(other.getName());
31
31
    const TransactionContext::ResourceContexts &other_resource_contexts= other.getResourceContexts();
32
 
    resource_contexts.assign(other_resource_contexts.begin(),
33
 
                             other_resource_contexts.end());
 
32
    resource_contexts.assign(other_resource_contexts.begin(), other_resource_contexts.end());
34
33
    if (other.getTransactionMessage() != NULL)
35
34
    {
36
35
      transaction_message= new message::Transaction(*other.getTransactionMessage());