Skip to content
Snippets Groups Projects
Commit d1d90c86 authored by Georgy Moshkin's avatar Georgy Moshkin :speech_balloon:
Browse files

fix: pretty sql parsing error messages

Previously when running `pico.sql [[ create table foo ]]` we would get
this output:
```
---
- null
- "sbroad: rule parsing error:  --> 1:9\n  |\n1 |  create table foo \n  |  ^---\n
  \ |\n  = expected Unique"
...
```

But now the output will be:
```
---
- null
- |+
  sbroad: rule parsing error:  --> 1:9
    |
  1 |  create table foo
    |         ^---
    |
    = expected Unique

...
```
parent f9e8eb3b
No related branches found
No related tags found
1 merge request!1038fix: pretty sql parsing error messages
Pipeline #41917 failed
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment