~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_create.c

  • Committer: Brian Aker
  • Date: 2008-07-07 16:07:49 UTC
  • mfrom: (80.1.1 food)
  • Revision ID: brian@tangent.org-20080707160749-qj89fnnwufz4xgop
Clean up install, we no longer have system tables.

Show diffs side-by-side

added added

removed removed

Lines of Context:
755
755
  if (file_length)                              /* If not default */
756
756
  {
757
757
#ifdef NOT_YET_READY_FOR_8_BYTE_POINTERS
758
 
    if (file_length >= ULL(1) << 56)
 
758
    if (file_length >= 1ULL << 56)
759
759
      def=8;
760
760
    else
761
761
#endif
762
 
    if (file_length >= ULL(1) << 48)
 
762
    if (file_length >= 1ULL << 48)
763
763
      def=7;
764
 
    else if (file_length >= ULL(1) << 40)
 
764
    else if (file_length >= 1ULL << 40)
765
765
      def=6;
766
 
    else if (file_length >= ULL(1) << 32)
 
766
    else if (file_length >= 1ULL << 32)
767
767
      def=5;
768
 
    else if (file_length >= ULL(1) << 24)
 
768
    else if (file_length >= 1ULL << 24)
769
769
      def=4;
770
 
    else if (file_length >= ULL(1) << 16)
 
770
    else if (file_length >= 1ULL << 16)
771
771
      def=3;
772
772
    else
773
773
      def=2;