~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/table.cc

  • Committer: Brian Aker
  • Date: 2008-07-09 07:05:02 UTC
  • Revision ID: brian@tangent.org-20080709070502-33a3vehqeuy2e1op
Removed unwanted ALTER TABLESPACE, left in valuable bits.

Show diffs side-by-side

added added

removed removed

Lines of Context:
192
192
 
193
193
    share->version=       refresh_version;
194
194
 
195
 
    share->tablespace=    NULL;
196
 
 
197
195
    /*
198
196
      This constant is used to mark that no table map version has been
199
197
      assigned.  No arithmetic is done on the value: it will be
261
259
  share->normalized_path.str=    (char*) path;
262
260
  share->path.length= share->normalized_path.length= strlen(path);
263
261
  share->frm_version=            FRM_VER_TRUE_VARCHAR;
264
 
  share->tablespace=             NULL;
265
262
  /*
266
263
    Temporary tables are not replicated, but we set up these fields
267
264
    anyway to be able to catch errors.
763
760
      {
764
761
        const uint format_section_header_size= 8;
765
762
        uint format_section_len= uint2korr(next_chunk+0);
766
 
        uint flags=              uint4korr(next_chunk+2);
767
 
 
768
 
        share->tablespace= NULL;
769
763
 
770
764
        field_extra_info= next_chunk + format_section_header_size + 1;
771
765
        next_chunk+= format_section_len;
2151
2145
  create_info->table_options= share->db_create_options;
2152
2146
  create_info->avg_row_length= share->avg_row_length;
2153
2147
  create_info->row_type= share->row_type;
2154
 
  create_info->tablespace= share->tablespace;
2155
2148
  create_info->default_table_charset= share->table_charset;
2156
2149
  create_info->table_charset= 0;
2157
2150
  create_info->comment= share->comment;