~mordred/drizzle/add-drizzle-namespace

« back to all changes in this revision

Viewing changes to storage/myisam/mi_key.c

  • Committer: Eric Herman
  • Date: 2008-12-06 19:42:46 UTC
  • mto: (656.1.6 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: eric@mysql.com-20081206194246-5cdexuu81i366eek
removed trailing whitespace with simple script:

for file in $(find . -name "*.c") $(find . -name "*.cc") $(find . -name "*.h"); do ruby -pe 'gsub(/\s+$/, $/)' < $file > $file.out; mv $file.out $file; done;

Show diffs side-by-side

added added

removed removed

Lines of Context:
464
464
    mi_check_index_cond()
465
465
      info    MyISAM handler
466
466
      keynr   Index we're running a scan on
467
 
      record  Record buffer to use (it is assumed that index check function 
 
467
      record  Record buffer to use (it is assumed that index check function
468
468
              will look for column values there)
469
469
 
470
470
  RETURN
471
 
    -1  Error 
 
471
    -1  Error
472
472
    0   Index condition is not satisfied, continue scanning
473
473
    1   Index condition is satisfied
474
 
    2   Index condition is not satisfied, end the scan. 
 
474
    2   Index condition is not satisfied, end the scan.
475
475
*/
476
476
 
477
477
int mi_check_index_cond(register MI_INFO *info, uint32_t keynr, unsigned char *record)