~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/lex_input_stream.h

  • Committer: Jay Pipes
  • Date: 2010-03-09 20:02:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1339.
  • Revision ID: jpipes@serialcoder-20100309200229-dfrliy4fads9vyf4
Fixes Bug #535296 by only incrementing ha_commit_count when its a normal transaction commit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
2
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
3
 *
4
 
 *  Copyright (C) 2008 Sun Microsystems, Inc.
 
4
 *  Copyright (C) 2008 Sun Microsystems
5
5
 *
6
6
 *  This program is free software; you can redistribute it and/or modify
7
7
 *  it under the terms of the GNU General Public License as published by
371
371
    Starting position of the TEXT_STRING or IDENT in the pre-processed
372
372
    buffer.
373
373
 
374
 
    NOTE: this member must be used within base_sql_lex() function only.
 
374
    NOTE: this member must be used within DRIZZLElex() function only.
375
375
  */
376
376
  const char *m_cpp_text_start;
377
377
 
379
379
    Ending position of the TEXT_STRING or IDENT in the pre-processed
380
380
    buffer.
381
381
 
382
 
    NOTE: this member must be used within base_sql_lex() function only.
 
382
    NOTE: this member must be used within DRIZZLElex() function only.
383
383
    */
384
384
  const char *m_cpp_text_end;
385
385