PRQL / prql

PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement
https://prql-lang.org
Apache License 2.0
9.58k stars 208 forks source link

feat: improve debug log in parsing stage #4671

Closed aljazerzen closed 1 week ago

aljazerzen commented 1 week ago

Since prqlc_parser has a single top-level function parse_source, we were not able to emit lr tokens in the debug log, since that is prqlc only instrumentation.

So I've moved the parse_source function to prqlc::parser, and now we have this:

image

max-sixty commented 1 week ago

Very nice indeed!