├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── LICENSE-SAMPLECODE ├── LICENSE-SUMMARY ├── README.md ├── deprecated ├── README.md └── partiql-lang-kotlin │ ├── v0.1 │ ├── compiler-class.pu │ ├── design │ │ ├── Abstract Syntax Tree.md │ │ └── Architecture Design.md │ ├── diagrams.pptx │ ├── documentation │ │ ├── Exceptions.md │ │ └── Test Script Specification.md │ ├── expr-value-class.pu │ ├── images │ │ ├── compiler-class.png │ │ ├── expr-value-class.png │ │ └── parser-compiler.png │ └── tutorials │ │ └── Cookbook.md │ ├── v0.13 │ └── tutorials │ │ └── Pluggable Functions Tutorial.md │ ├── v0.14 │ └── serde │ │ ├── PartiQLIonSerde.md │ │ └── tutorials │ │ └── ExperimentalFeatures.md │ ├── v0.2 │ └── Rewriter to Visitor Transform Guide.md │ └── v0.9 │ ├── clauses │ └── Explain.md │ └── tutorials │ └── Manipulating the AST.md ├── docs ├── README.md ├── builtins-partiql.adoc ├── builtins-sql.adoc └── reserved-keywords-spec-version-2019.adoc └── drafts └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE-SAMPLECODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/LICENSE-SAMPLECODE -------------------------------------------------------------------------------- /LICENSE-SUMMARY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/LICENSE-SUMMARY -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/README.md -------------------------------------------------------------------------------- /deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/README.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/compiler-class.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/compiler-class.pu -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/design/Abstract Syntax Tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/design/Abstract Syntax Tree.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/design/Architecture Design.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/design/Architecture Design.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/diagrams.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/diagrams.pptx -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/documentation/Exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/documentation/Exceptions.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/documentation/Test Script Specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/documentation/Test Script Specification.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/expr-value-class.pu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/expr-value-class.pu -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/images/compiler-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/images/compiler-class.png -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/images/expr-value-class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/images/expr-value-class.png -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/images/parser-compiler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/images/parser-compiler.png -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.1/tutorials/Cookbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.1/tutorials/Cookbook.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.13/tutorials/Pluggable Functions Tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.13/tutorials/Pluggable Functions Tutorial.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.14/serde/PartiQLIonSerde.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.14/serde/PartiQLIonSerde.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.14/serde/tutorials/ExperimentalFeatures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.14/serde/tutorials/ExperimentalFeatures.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.2/Rewriter to Visitor Transform Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.2/Rewriter to Visitor Transform Guide.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.9/clauses/Explain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.9/clauses/Explain.md -------------------------------------------------------------------------------- /deprecated/partiql-lang-kotlin/v0.9/tutorials/Manipulating the AST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/deprecated/partiql-lang-kotlin/v0.9/tutorials/Manipulating the AST.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/builtins-partiql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/docs/builtins-partiql.adoc -------------------------------------------------------------------------------- /docs/builtins-sql.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/docs/builtins-sql.adoc -------------------------------------------------------------------------------- /docs/reserved-keywords-spec-version-2019.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/docs/reserved-keywords-spec-version-2019.adoc -------------------------------------------------------------------------------- /drafts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/partiql/partiql-docs/HEAD/drafts/README.md --------------------------------------------------------------------------------