~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/myisam/my_pread.cc

  • Committer: Brian Aker
  • Date: 2010-08-09 18:04:12 UTC
  • mfrom: (1689.3.7 staging)
  • Revision ID: brian@gaz-20100809180412-olurwh51ojllev6p
Merge in heap conversion, and case insensitive patch, and remove need for
M_HASH in session.

Show diffs side-by-side

added added

removed removed

Lines of Context:
11
11
 
12
12
   You should have received a copy of the GNU General Public License
13
13
   along with this program; if not, write to the Free Software
14
 
   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA */
 
14
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
15
15
 
16
16
#include "myisam_priv.h"
17
 
#include <drizzled/error.h>
 
17
#include "drizzled/error.h"
 
18
#include "drizzled/internal/thread_var.h"
18
19
#include <cerrno>
19
20
#include <unistd.h>
20
21
 
116
117
      offset+=writenbytes;
117
118
    }
118
119
#ifndef NO_BACKGROUND
 
120
    if (my_thread_var->abort)
 
121
      MyFlags&= ~ MY_WAIT_IF_FULL;              /* End if aborted by user */
119
122
    if ((errno == ENOSPC || errno == EDQUOT) &&
120
123
        (MyFlags & MY_WAIT_IF_FULL))
121
124
    {