~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Monty Taylor
  • Date: 2009-12-21 08:44:54 UTC
  • mto: (1253.2.3 out-of-tree)
  • mto: This revision was merged to the branch mainline in revision 1250.
  • Revision ID: mordred@inaugust.com-20091221084454-uhbp57fnsrqfyg9i
Moved global pthread variables into their own header.

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
#include "drizzled/statement/alter_table.h"
44
44
#include "drizzled/plugin/info_schema_table.h"
45
45
#include "drizzled/sql_table.h"
 
46
#include "drizzled/pthread_globals.h"
46
47
 
47
48
#include <algorithm>
48
49
#include <sstream>
50
51
using namespace std;
51
52
using namespace drizzled;
52
53
 
 
54
extern pid_t current_pid;
 
55
 
53
56
static const char hexchars[]= "0123456789abcdef";
54
57
bool is_primary_key(KEY *key_info)
55
58
{