Show
Ignore:
Timestamp:
05/25/09 07:02:40 (16 months ago)
Author:
sjamaan
Message:

Fix column-map* too (maybe I should write tests for these, too....)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • release/4/postgresql/trunk/postgresql.scm

    r14768 r14769  
    758758(define column-map (make-result-map column-count column-values)) 
    759759(define (column-map* proc result) 
    760   (row-map (lambda (values) (apply proc values)) result)) 
     760  (column-map (lambda (values) (apply proc values)) result)) 
    761761 
    762762)