~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/table_identifier.h

  • Committer: Brian Aker
  • Date: 2009-12-01 21:58:19 UTC
  • mto: (1237.3.2 push)
  • mto: This revision was merged to the branch mainline in revision 1236.
  • Revision ID: brian@gaz-20091201215819-y4ye7tiopu9a1sz1
Remove the need for trans/non-trans temp tables for lock conditions.

Show diffs side-by-side

added added

removed removed

Lines of Context:
94
94
    case INTERNAL_TMP_TABLE:
95
95
      type_str= "internal";
96
96
      break;
97
 
    case NON_TRANSACTIONAL_TMP_TABLE:
98
 
      type_str= "non-transactional temp";
99
 
      break;
100
 
    case TRANSACTIONAL_TMP_TABLE:
101
 
      type_str= "transactional temp";
 
97
    case TEMP_TABLE:
 
98
      type_str= "temporary";
102
99
      break;
103
100
    case SYSTEM_TMP_TABLE:
104
101
      type_str= "system";