changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > org > notes / query-lang.org

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