~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/savepoint.cc

Remove PLUGIN and MODULES.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <drizzled/server_includes.h>
 
21
#include "config.h"
22
22
#include <drizzled/show.h>
23
23
#include <drizzled/session.h>
24
24
#include <drizzled/statement/savepoint.h>
38
38
    for (sv= &session->transaction.savepoints; *sv; sv= &(*sv)->prev)
39
39
    {
40
40
      if (my_strnncoll(system_charset_info,
41
 
                       (unsigned char *) session->lex->ident.str, 
 
41
                       (unsigned char *) session->lex->ident.str,
42
42
                       session->lex->ident.length,
43
 
                       (unsigned char *) (*sv)->name, 
 
43
                       (unsigned char *) (*sv)->name,
44
44
                       (*sv)->length) == 0)
45
45
        return false;
46
46
    }
57
57
      return false;
58
58
    }
59
59
    newsv->name= strmake_root(&session->transaction.mem_root,
60
 
                              session->lex->ident.str, 
 
60
                              session->lex->ident.str,
61
61
                              session->lex->ident.length);
62
62
    newsv->length= session->lex->ident.length;
63
63
    /*