~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/table.cc

  • Committer: Brian Aker
  • Date: 2008-07-11 17:17:17 UTC
  • mfrom: (77.1.79 codestyle)
  • Revision ID: brian@tangent.org-20080711171717-039qp03g93w70rlq
MergeĀ 

Show diffs side-by-side

added added

removed removed

Lines of Context:
474
474
  uint new_frm_ver, field_pack_length, new_field_pack_flag;
475
475
  uint interval_count, interval_parts, read_length, int_length;
476
476
  uint db_create_options, keys, key_parts, n_length;
477
 
  uint key_info_length, com_length, null_bit_pos;
 
477
  uint key_info_length, com_length, null_bit_pos=0;
478
478
  uint extra_rec_buf_length;
479
479
  uint i,j;
480
480
  bool use_hash;
481
481
  uchar forminfo[288];
482
482
  char *keynames, *names, *comment_pos;
483
483
  uchar *record;
484
 
  uchar *disk_buff, *strpos, *null_flags, *null_pos;
 
484
  uchar *disk_buff, *strpos, *null_flags=NULL, *null_pos=NULL;
485
485
  ulong pos, record_offset, *rec_per_key, rec_buff_length;
486
486
  handler *handler_file= 0;
487
487
  KEY   *keyinfo;
3066
3066
{
3067
3067
  Natural_join_column *nj_col;
3068
3068
  bool is_created= true;
3069
 
  uint field_count;
 
3069
  uint field_count=0;
3070
3070
  TABLE_LIST *add_table_ref= parent_table_ref ?
3071
3071
                             parent_table_ref : table_ref;
3072
3072