~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_base.cc

  • Committer: Brian Aker
  • Date: 2011-01-13 00:29:52 UTC
  • mto: (2077.1.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2078.
  • Revision ID: brian@tangent.org-20110113002952-x8j3jbbm629teuti
Create a shared form of the instance which is a bit more heavier weight then
the main instance class.

Show diffs side-by-side

added added

removed removed

Lines of Context:
118
118
 
119
119
  table->cursor->close();
120
120
  table->db_stat= 0;                            // Mark cursor closed
121
 
  TableShare::release(table->getMutableShare());
 
121
  table::instance::release(table->getMutableShare());
122
122
  table->setShare(share);
123
123
}
124
124