1. 4
    Runtime-Extensible SQL Parsers Using PEG databases duckdb.org
    1. 1

      This is a really good observation. I think peg is a fantastic solution for an easy to understand and extend solution.

      I used a peg parser to automatically infer openai json schema for typescript libraries. This included parsing jsdoc. I think their observation of needing extensible parsers holds across the whole dev stack and for more reasons than extending.

      On sql side one frequently needs to extract the dependency graph from an sql query and there are no good solutions for that. This will be very appreciated