~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/table.cc

Merged in Jay's tree.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2032
2032
    create_flags|= O_EXCL | O_NOFOLLOW;
2033
2033
 
2034
2034
  /* Fix this when we have new .frm files;  Current limit is 4G rows (QQ) */
2035
 
  if (create_info->max_rows > UINT_MAX32)
2036
 
    create_info->max_rows= UINT_MAX32;
2037
 
  if (create_info->min_rows > UINT_MAX32)
2038
 
    create_info->min_rows= UINT_MAX32;
 
2035
  if (create_info->max_rows > UINT32_MAX)
 
2036
    create_info->max_rows= UINT32_MAX;
 
2037
  if (create_info->min_rows > UINT32_MAX)
 
2038
    create_info->min_rows= UINT32_MAX;
2039
2039
 
2040
2040
  if ((file= my_create(name, CREATE_MODE, create_flags, MYF(0))) >= 0)
2041
2041
  {