mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-18 00:45:47 +00:00
* Fatal-on-data-error `mlr -x` option [WIP] * arithmetic.go error-reason propagation * more * more * more * renames * doc page * namefix * fix broken test * make dev
43 lines
2.5 KiB
Markdown
43 lines
2.5 KiB
Markdown
# DSL errors and transparency
|
|
|
|
# Handling for data errors
|
|
|
|
By default, Miller doesn't stop data processing for a single cell error. For example:
|
|
|
|
GENMD-RUN-COMMAND
|
|
mlr --csv --from data-error.csv cat
|
|
GENMD-EOF
|
|
|
|
GENMD-RUN-COMMAND
|
|
mlr --csv --from data-error.csv put '$y = log10($x)'
|
|
GENMD-EOF
|
|
|
|
If you do want to stop processing, though, you have three options. The first is the `mlr -x` flag:
|
|
|
|
GENMD-RUN-COMMAND-TOLERATING-ERROR
|
|
mlr -x --csv --from data-error.csv put '$y = log10($x)'
|
|
GENMD-EOF
|
|
|
|
The second is to put `-x` into your [`~/.mlrrc` file](customization.md).
|
|
|
|
The third is to set the `MLR_FAIL_ON_DATA_ERROR` environment variable, which makes `-x` implicit.
|
|
|
|
# Common causes of syntax errors
|
|
|
|
As soon as you have a [programming language](miller-programming-language.md), you start having the problem *What is my code doing, and why?* This includes getting syntax errors -- which are always annoying -- as well as the even more annoying problem of a program which parses without syntax error but doesn't do what you expect.
|
|
|
|
The syntax-error message gives you line/column position for the syntax that couldn't be parsed. The cause may be clear from that information, or perhaps not. Here are some common causes of syntax errors:
|
|
|
|
* Don't forget `;` at end of line, before another statement on the next line.
|
|
|
|
* Miller's DSL lacks the `++` and `--` operators.
|
|
|
|
* Curly braces are required for the bodies of `if`/`while`/`for` blocks, even when the body is a single statement.
|
|
|
|
# Transparency
|
|
|
|
* As in any language, you can do `print`, or `eprint` to print to stderr. See [Print statements](reference-dsl-output-statements.md#print-statements); see also [Dump statements](reference-dsl-output-statements.md#dump-statements) and [Emit statements](reference-dsl-output-statements.md#emit-statements).
|
|
|
|
* The `-v` option to `mlr put` and `mlr filter` prints abstract syntax trees for your code. While not all details here will be of interest to everyone, certainly this makes questions such as operator precedence completely unambiguous.
|
|
|
|
* Please see [type-checking](reference-dsl-variables.md#type-checking) for type declarations and type-assertions you can use to make sure expressions and the data flowing them are evaluating as you expect. I made them optional because one of Miller's important use-cases is being able to say simple things like `mlr put '$y = $x + 1' myfile.dat` with a minimum of punctuational bric-a-brac -- but for programs over a few lines long, I generally find that the more type-specification, the better.
|