changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > org > notes / query-lang.org

changeset 4: 812feca5a874
parent: 04e86b94ef1a
child: 4839b0675118
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 16 Jun 2024 01:14:25 -0400
permissions: -rw-r--r--
description: clean
1 * query langs
2 Queries are extremely important in software development and having a
3 robust query engine is a must for CC.
4 
5 Our goal is to develop a query-language compiler (Q) which can be
6 tuned at compile-time to meet the needs of any database backend.
7 
8 The query languages that interest us most are derived from Prolog
9 (/datalog) and SQL, but we won't be supporting all of their features -
10 only the ones that can be reasonably coerced to all supported frontends.
11 
12 Q will require an Intermediate Representation (IR) - the encoding will
13 be based on S-expressions with a specialized reader.