mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-25 17:04:01 +00:00
* JIT mlrval type-interfence: mlrval package * mlrmap refactor * complete merge from #779 * iterating * mlrval/format.go * mlrval/copy.go * bifs/arithmetic_test.go * iterate on bifs/collections_test.go * mlrval_cmp.go * mlrval JSON iterate * iterate applying mlrval refactors to dependent packages * first clean compile in a long while on this branch * results of first post-compile profiling * testing * bugfix in ofmt formatting * bugfix in octal-supporess * go fmt * neaten * regression tests all passing
38 lines
995 B
Bash
Executable file
38 lines
995 B
Bash
Executable file
#!/bin/bash
|
|
|
|
ourdir=$(dirname $0)
|
|
|
|
$ourdir/time-big-file dkvp mlr5
|
|
$ourdir/time-big-file dkvp ~/tmp/miller/mlr
|
|
$ourdir/time-big-file dkvp 'mlr -S'
|
|
$ourdir/time-big-file dkvp mlr
|
|
echo
|
|
|
|
$ourdir/time-big-file nidx mlr5
|
|
$ourdir/time-big-file nidx ~/tmp/miller/mlr
|
|
$ourdir/time-big-file nidx 'mlr -S'
|
|
$ourdir/time-big-file nidx mlr
|
|
echo
|
|
|
|
$ourdir/time-big-file xtab mlr5
|
|
$ourdir/time-big-file xtab ~/tmp/miller/mlr
|
|
$ourdir/time-big-file xtab 'mlr -S'
|
|
$ourdir/time-big-file xtab mlr
|
|
echo
|
|
|
|
$ourdir/time-big-file csv mlr5
|
|
$ourdir/time-big-file csv ~/tmp/miller/mlr
|
|
$ourdir/time-big-file csv 'mlr -S'
|
|
$ourdir/time-big-file csv mlr
|
|
echo
|
|
|
|
$ourdir/time-big-file csvlite mlr5
|
|
$ourdir/time-big-file csvlite ~/tmp/miller/mlr
|
|
$ourdir/time-big-file csvlite 'mlr -S'
|
|
$ourdir/time-big-file csvlite mlr
|
|
echo
|
|
|
|
$ourdir/time-big-file json mlr5
|
|
$ourdir/time-big-file json ~/tmp/miller/mlr
|
|
$ourdir/time-big-file json 'mlr -S'
|
|
$ourdir/time-big-file json mlr
|