~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/filesystem_engine/filesystem_engine.cc

  • Committer: Brian Aker
  • Date: 2011-01-25 07:22:15 UTC
  • mfrom: (2109.1.7 drizzle-build)
  • Revision ID: brian@tangent.org-20110125072215-567z6uzy5vdvn4va
Merge in build/timestamp patches/fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
490
490
 
491
491
int FilesystemCursor::doStartTableScan(bool)
492
492
{
493
 
  sql_command_type = getTable()->getSession()->getSqlCommand();
 
493
  sql_command_type = session_sql_command(getTable()->getSession());
494
494
 
495
495
  if (thread_locked)
496
496
    critical_section_exit();
701
701
 
702
702
int FilesystemCursor::doEndTableScan()
703
703
{
704
 
  sql_command_type = getTable->getSession()->getSqlCommand();
 
704
  sql_command_type = session_sql_command(getTable()->getSession());
705
705
 
706
706
  if (share->format.isTagFormat())
707
707
  {
822
822
  if (share->format.isTagFormat())
823
823
    return 0;
824
824
 
825
 
  sql_command_type = getTable()->getSession()->getSqlCommand();
 
825
  sql_command_type = session_sql_command(getTable()->getSession());
826
826
 
827
827
  critical_section_enter();
828
828
 
956
956
  "Filesystem Engine",
957
957
  PLUGIN_LICENSE_GPL,
958
958
  filesystem_init_func, /* Plugin Init */
959
 
  NULL,                       /* depends */
 
959
  NULL,                       /* system variables                */
960
960
  NULL                        /* config options                  */
961
961
}
962
962
DRIZZLE_DECLARE_PLUGIN_END;