├── .github └── workflows │ └── main.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── CQL_Guide ├── ch01.md ├── ch02.md ├── ch03.md ├── ch04.md ├── ch05.md ├── ch06.md ├── ch07.md ├── ch08.md ├── ch09.md ├── ch10.md ├── ch11.md ├── ch12.md ├── ch13.md ├── ch14.md ├── ch15.md ├── generated │ ├── guide.html │ ├── guide.md │ ├── internal.html │ ├── internal.md │ ├── make_guide.sh │ └── make_internal.sh ├── int01.md ├── int02.md ├── int03.md ├── int04.md ├── int05.md ├── int06.md ├── int07.md ├── int08.md ├── x1.md ├── x10.md ├── x11.md ├── x2.md ├── x3.md ├── x4.md ├── x5.md ├── x6.md ├── x7.md ├── x8.md └── x9.md ├── LICENSE ├── README.md ├── diagrams ├── format_diagrams.sh ├── json_output_railroad_diagram.html ├── railroad_diagram.html └── rr-replacements.txt ├── docs ├── code-coverage.md ├── dev_notes.md ├── getting-started.md ├── introduction.md ├── playground.md └── testing.md ├── sources ├── .gitignore ├── Makefile ├── ast.c ├── ast.h ├── bytebuf.c ├── bytebuf.h ├── cg_c.c ├── cg_c.h ├── cg_common.c ├── cg_common.h ├── cg_json_schema.c ├── cg_json_schema.h ├── cg_lua.c ├── cg_lua.h ├── cg_objc.c ├── cg_objc.h ├── cg_query_plan.c ├── cg_query_plan.h ├── cg_schema.c ├── cg_schema.h ├── cg_stats.c ├── cg_stats.h ├── cg_test_helpers.c ├── cg_test_helpers.h ├── cg_udf.c ├── cg_udf.h ├── charbuf.c ├── charbuf.h ├── common │ ├── Makefile_common │ ├── amalgam_common.sh │ ├── cov_common.sh │ ├── json_check.py │ ├── ok_common.sh │ ├── test_bison.sh │ ├── test_common.sh │ ├── test_flex.sh │ ├── test_helpers.sh │ └── update_docs.sh ├── compat.c ├── compat.h ├── cov.sh ├── cql.h ├── cql.l ├── cql.y ├── cqljson │ └── cqljson.py ├── cqlrt.c ├── cqlrt.h ├── cqlrt.lua ├── cqlrt_cf │ ├── .gitignore │ ├── clean.sh │ ├── cqlholder.m │ ├── cqlrt_cf.c │ ├── cqlrt_cf.h │ ├── demo_main.m │ ├── demo_todo.sql │ └── make.sh ├── cqlrt_common.c ├── cqlrt_common.h ├── crc64xz.c ├── crc64xz.h ├── demo │ ├── demo.sh │ ├── demo.sql │ └── demo_client.c ├── diags.h ├── dotpng.sh ├── encoders.c ├── encoders.h ├── eval.c ├── eval.h ├── flow.c ├── flow.h ├── gen_sql.c ├── gen_sql.h ├── grammar_docs │ ├── cql_grammar.md │ ├── cql_grammar.txt │ ├── diagram_tweaks.txt │ ├── grammar.js │ ├── json_grammar.md │ ├── json_grammar.txt │ ├── json_replacements.l │ ├── make_grammar.sh │ ├── make_json_grammar.sh │ ├── replacements.l │ ├── tree_sitter.py │ └── ys.c ├── java_demo │ ├── CGSQLMain.java │ ├── README.md │ ├── Sample.sql │ ├── TestResult.c │ ├── TestResult.java │ ├── clean.sh │ ├── com │ │ └── facebook │ │ │ └── cgsql │ │ │ ├── CQLResultSet.java │ │ │ ├── CQLViewModel.java │ │ │ └── EncodedString.java │ ├── com_facebook_cgsql_CQLResultSet.c │ ├── cqljava.py │ └── make.sh ├── json_test │ ├── json_test.l │ └── json_test.y ├── linetester │ ├── linetest.c │ ├── linetest.h │ ├── linetest.sql │ ├── linetest_main.c │ └── regen.sh ├── list.c ├── list.h ├── lua_demo │ ├── README │ ├── demo.sh │ ├── demo.sql │ ├── lua_upgrade0.ref │ ├── lua_upgrade1.ref │ ├── lua_upgrade2.ref │ ├── lua_upgrade3.ref │ ├── lua_upgrade4.ref │ ├── prepare_run_test.sh │ ├── run_test.sh │ ├── t1.sql │ ├── t2.sql │ ├── t3.sql │ ├── t4.sql │ ├── t5.sql │ ├── t6.sql │ ├── test_helpers.lua │ └── upgrade_harness.cql ├── make_amalgam.sh ├── minipool.c ├── minipool.h ├── ok.sh ├── printf.c ├── printf.h ├── query_plan.sh ├── query_plan_test.c ├── repl │ ├── README.md │ ├── clean.sh │ ├── clean_query_plan.sh │ ├── go.sh │ ├── go.sql │ ├── go_query_plan.sh │ └── main.c ├── result_set_extension.c ├── rewrite.c ├── rewrite.h ├── rt.c ├── rt.h ├── rt_common.c ├── run_test_client.c ├── sem.c ├── sem.h ├── sha256.c ├── sha256.h ├── symtab.c ├── symtab.h ├── test.sh ├── test │ ├── LICENSE │ ├── alt_cqlrt.err.ref │ ├── amalgam_test.c │ ├── asm_query_ns_needed.err.ref │ ├── badpath.err.ref │ ├── bigquote.err.ref │ ├── bigquote.sql │ ├── c_include_namespace_missing.err.ref │ ├── c_include_needed.err.ref │ ├── cg_1_2.err.ref │ ├── cg_requires_file.err.ref │ ├── cg_test.sql │ ├── cg_test_assembly_query.sql │ ├── cg_test_assembly_query_c.c.ref │ ├── cg_test_assembly_query_c.h.ref │ ├── cg_test_assembly_query_json.out.ref │ ├── cg_test_assembly_query_objc.out.ref │ ├── cg_test_base_fragment.sql │ ├── cg_test_base_fragment_c.c.ref │ ├── cg_test_base_fragment_c.h.ref │ ├── cg_test_base_fragment_json.out.ref │ ├── cg_test_base_fragment_objc.out.ref │ ├── cg_test_c.c.ref │ ├── cg_test_c.err.ref │ ├── cg_test_c.h.ref │ ├── cg_test_c_globals.c.ref │ ├── cg_test_c_globals.h.ref │ ├── cg_test_c_globals.sql │ ├── cg_test_c_type_getters.sql │ ├── cg_test_c_with_header.c.ref │ ├── cg_test_c_with_header.h.ref │ ├── cg_test_c_with_namespace.c.ref │ ├── cg_test_c_with_namespace.h.ref │ ├── cg_test_c_with_type_getters.c.ref │ ├── cg_test_c_with_type_getters.h.ref │ ├── cg_test_exports.out.ref │ ├── cg_test_extension_fragment.sql │ ├── cg_test_extension_fragment_c.c.ref │ ├── cg_test_extension_fragment_c.h.ref │ ├── cg_test_extension_fragment_json.out.ref │ ├── cg_test_extension_fragment_objc.out.ref │ ├── cg_test_generated_from.sql │ ├── cg_test_json_schema.out.ref │ ├── cg_test_json_schema.sql │ ├── cg_test_lua.err.ref │ ├── cg_test_lua.lua.ref │ ├── cg_test_lua.sql │ ├── cg_test_no_result_set.sql │ ├── cg_test_objc.err.ref │ ├── cg_test_objc.out.ref │ ├── cg_test_out_object.sql │ ├── cg_test_prev_invalid.sql │ ├── cg_test_query_plan.out.ref │ ├── cg_test_query_plan.sql │ ├── cg_test_query_plan_js.out.ref │ ├── cg_test_schema_min_version_upgrade.err.ref │ ├── cg_test_schema_min_version_upgrade.out.ref │ ├── cg_test_schema_partial_upgrade.err.ref │ ├── cg_test_schema_partial_upgrade.out.ref │ ├── cg_test_schema_prev.err.ref │ ├── cg_test_schema_prev.out.ref │ ├── cg_test_schema_sqlite.err.ref │ ├── cg_test_schema_sqlite.out.ref │ ├── cg_test_schema_upgrade.err.ref │ ├── cg_test_schema_upgrade.out.ref │ ├── cg_test_schema_upgrade.sql │ ├── cg_test_test_helpers.out.ref │ ├── cg_test_test_helpers.sql │ ├── cql_amalgam_test.err.ref │ ├── cql_amalgam_test.out.ref │ ├── cql_amalgam_test_semantic_error.sql │ ├── cql_amalgam_test_success.sql │ ├── cql_amalgam_test_syntax_error.sql │ ├── cqlrt_arg_missing.err.ref │ ├── cqltest.c │ ├── cqltest.h │ ├── dottest.out.ref │ ├── dottest.sql │ ├── error.sql │ ├── excl_invalid_regions.err.ref │ ├── gen_exports_args.err.ref │ ├── generate_file_file.err.ref │ ├── generate_file_type.err.ref │ ├── global_proc_missing.err.ref │ ├── global_proc_needed.err.ref │ ├── in_arg_missing.err.ref │ ├── inc_invalid_regions.err.ref │ ├── invalid_arg.err.ref │ ├── linetest.expected │ ├── linetest.sql │ ├── noresult.sql │ ├── objc_include_missing.err.ref │ ├── objc_no_results.err.ref │ ├── parse_test_cql_inferred_notnull.err.ref │ ├── parse_test_cql_inferred_notnull.sql │ ├── parse_test_fetch_from_call_columns.err.ref │ ├── parse_test_fetch_from_call_columns.sql │ ├── prev_and_codegen_incompat.err.ref │ ├── rt_arg_bogus.err.ref │ ├── rt_arg_missing.err.ref │ ├── run_test.sql │ ├── schema_version_error.sql │ ├── schema_version_ok.sql │ ├── sem_abort.err.ref │ ├── sem_test.err.ref │ ├── sem_test.out.ref │ ├── sem_test.sql │ ├── sem_test_dev.err.ref │ ├── sem_test_dev.out.ref │ ├── sem_test_dev.sql │ ├── sem_test_migrate.err.ref │ ├── sem_test_migrate.out.ref │ ├── sem_test_migrate.sql │ ├── sem_test_prev.err.ref │ ├── sem_test_prev.out.ref │ ├── sem_test_prev.sql │ ├── semantic_error.sql │ ├── simple_error.err.ref │ ├── stats.csv.ref │ ├── stats_test.sql │ ├── test.out.ref │ ├── test.sql │ ├── udf.c.ref │ ├── udf.h.ref │ ├── unwriteable.err.ref │ ├── upgrade_schema_v0.out.ref │ ├── upgrade_schema_v1.out.ref │ ├── upgrade_schema_v2.out.ref │ ├── upgrade_schema_v3.out.ref │ ├── upgrade_schema_v4.out.ref │ ├── usage.out.ref │ ├── write_fail.err.ref │ └── writefails.sql ├── test_helpers_test.c ├── tester │ ├── dbhelp.c │ ├── dbhelp.h │ ├── dbhelp.sql │ ├── main.c │ └── regen.sh ├── unit_tests.c ├── unit_tests.h ├── update_docs.sh └── upgrade │ ├── SchemaPersistentV0.sql │ ├── SchemaPersistentV1.sql │ ├── SchemaPersistentV2.sql │ ├── SchemaPersistentV3.sql │ ├── SchemaPersistentV4.sql │ ├── downgrade_test.c │ ├── errortrace.inc │ ├── upgrade_test.c │ ├── upgrade_test.sh │ └── upgrade_validate.sql └── website ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .stylelintrc.js ├── README.md ├── babel.config.js ├── blog ├── 2020-10-12-welcome.md ├── 2020-11-12-update.md ├── 2020-11-15-boxed-cursors.md ├── 2020-11-16-error-tracing.md ├── 2020-11-18-error-tracing-macro.md ├── 2020-11-20-like-forms-tutorial.md ├── 2020-12-03-declare-enum-intro.md ├── 2020-12-08-arg-bundle-intro.md ├── 2020-12-16-virtual-table-intro.md ├── 2021-01-14-named-types-intro.md ├── 2021-01-20-type-kinds-intro.md ├── 2021-02-10-free-empty-results.md ├── 2021-02-14-select-if-nothing.md ├── 2021-02-21-result-variable.md ├── 2021-12-14-shared-fragments.md ├── 2021-12-30-flow-analysis.md ├── 2022-02-03-columns-sugar.md ├── 2022-02-19-expression-frags.md ├── 2022-02-21-from-general.md ├── 2022-03-17-blob-storage.md ├── 2022-10-05-backed-tables.md ├── 2022-10-06-parent-child.md └── 2022-11-07-schema-notes-2022.md ├── docusaurus.config.js ├── package.json ├── plugins └── my-loaders │ └── index.js ├── sidebars.js ├── sidebarsGuide.js ├── src ├── components │ └── DiagramContent.js ├── css │ └── custom.css └── pages │ ├── index.js │ ├── json-diagram.js │ ├── program-diagram.js │ └── styles.module.css ├── static ├── .nojekyll ├── CNAME └── img │ ├── CGSQL-Icon.png │ ├── CGSQL-Icon.svg │ ├── CGSQL-Logo.png │ ├── CGSQL-Logo.svg │ ├── favicon.ico │ └── oss_logo.png └── yarn.lock /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CQL_Guide/ch01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch01.md -------------------------------------------------------------------------------- /CQL_Guide/ch02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch02.md -------------------------------------------------------------------------------- /CQL_Guide/ch03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch03.md -------------------------------------------------------------------------------- /CQL_Guide/ch04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch04.md -------------------------------------------------------------------------------- /CQL_Guide/ch05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch05.md -------------------------------------------------------------------------------- /CQL_Guide/ch06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch06.md -------------------------------------------------------------------------------- /CQL_Guide/ch07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch07.md -------------------------------------------------------------------------------- /CQL_Guide/ch08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch08.md -------------------------------------------------------------------------------- /CQL_Guide/ch09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch09.md -------------------------------------------------------------------------------- /CQL_Guide/ch10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch10.md -------------------------------------------------------------------------------- /CQL_Guide/ch11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch11.md -------------------------------------------------------------------------------- /CQL_Guide/ch12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch12.md -------------------------------------------------------------------------------- /CQL_Guide/ch13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch13.md -------------------------------------------------------------------------------- /CQL_Guide/ch14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch14.md -------------------------------------------------------------------------------- /CQL_Guide/ch15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/ch15.md -------------------------------------------------------------------------------- /CQL_Guide/generated/guide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/generated/guide.html -------------------------------------------------------------------------------- /CQL_Guide/generated/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/generated/guide.md -------------------------------------------------------------------------------- /CQL_Guide/generated/internal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/generated/internal.html -------------------------------------------------------------------------------- /CQL_Guide/generated/internal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/generated/internal.md -------------------------------------------------------------------------------- /CQL_Guide/generated/make_guide.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/generated/make_guide.sh -------------------------------------------------------------------------------- /CQL_Guide/generated/make_internal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/generated/make_internal.sh -------------------------------------------------------------------------------- /CQL_Guide/int01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int01.md -------------------------------------------------------------------------------- /CQL_Guide/int02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int02.md -------------------------------------------------------------------------------- /CQL_Guide/int03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int03.md -------------------------------------------------------------------------------- /CQL_Guide/int04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int04.md -------------------------------------------------------------------------------- /CQL_Guide/int05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int05.md -------------------------------------------------------------------------------- /CQL_Guide/int06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int06.md -------------------------------------------------------------------------------- /CQL_Guide/int07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int07.md -------------------------------------------------------------------------------- /CQL_Guide/int08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/int08.md -------------------------------------------------------------------------------- /CQL_Guide/x1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x1.md -------------------------------------------------------------------------------- /CQL_Guide/x10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x10.md -------------------------------------------------------------------------------- /CQL_Guide/x11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x11.md -------------------------------------------------------------------------------- /CQL_Guide/x2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x2.md -------------------------------------------------------------------------------- /CQL_Guide/x3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x3.md -------------------------------------------------------------------------------- /CQL_Guide/x4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x4.md -------------------------------------------------------------------------------- /CQL_Guide/x5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x5.md -------------------------------------------------------------------------------- /CQL_Guide/x6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x6.md -------------------------------------------------------------------------------- /CQL_Guide/x7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x7.md -------------------------------------------------------------------------------- /CQL_Guide/x8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x8.md -------------------------------------------------------------------------------- /CQL_Guide/x9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/CQL_Guide/x9.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/README.md -------------------------------------------------------------------------------- /diagrams/format_diagrams.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/diagrams/format_diagrams.sh -------------------------------------------------------------------------------- /diagrams/json_output_railroad_diagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/diagrams/json_output_railroad_diagram.html -------------------------------------------------------------------------------- /diagrams/railroad_diagram.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/diagrams/railroad_diagram.html -------------------------------------------------------------------------------- /diagrams/rr-replacements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/diagrams/rr-replacements.txt -------------------------------------------------------------------------------- /docs/code-coverage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/docs/code-coverage.md -------------------------------------------------------------------------------- /docs/dev_notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/docs/dev_notes.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/docs/introduction.md -------------------------------------------------------------------------------- /docs/playground.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/docs/playground.md -------------------------------------------------------------------------------- /docs/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/docs/testing.md -------------------------------------------------------------------------------- /sources/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/.gitignore -------------------------------------------------------------------------------- /sources/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/Makefile -------------------------------------------------------------------------------- /sources/ast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/ast.c -------------------------------------------------------------------------------- /sources/ast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/ast.h -------------------------------------------------------------------------------- /sources/bytebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/bytebuf.c -------------------------------------------------------------------------------- /sources/bytebuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/bytebuf.h -------------------------------------------------------------------------------- /sources/cg_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_c.c -------------------------------------------------------------------------------- /sources/cg_c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_c.h -------------------------------------------------------------------------------- /sources/cg_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_common.c -------------------------------------------------------------------------------- /sources/cg_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_common.h -------------------------------------------------------------------------------- /sources/cg_json_schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_json_schema.c -------------------------------------------------------------------------------- /sources/cg_json_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_json_schema.h -------------------------------------------------------------------------------- /sources/cg_lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_lua.c -------------------------------------------------------------------------------- /sources/cg_lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_lua.h -------------------------------------------------------------------------------- /sources/cg_objc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_objc.c -------------------------------------------------------------------------------- /sources/cg_objc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_objc.h -------------------------------------------------------------------------------- /sources/cg_query_plan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_query_plan.c -------------------------------------------------------------------------------- /sources/cg_query_plan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_query_plan.h -------------------------------------------------------------------------------- /sources/cg_schema.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_schema.c -------------------------------------------------------------------------------- /sources/cg_schema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_schema.h -------------------------------------------------------------------------------- /sources/cg_stats.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_stats.c -------------------------------------------------------------------------------- /sources/cg_stats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_stats.h -------------------------------------------------------------------------------- /sources/cg_test_helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_test_helpers.c -------------------------------------------------------------------------------- /sources/cg_test_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_test_helpers.h -------------------------------------------------------------------------------- /sources/cg_udf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_udf.c -------------------------------------------------------------------------------- /sources/cg_udf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cg_udf.h -------------------------------------------------------------------------------- /sources/charbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/charbuf.c -------------------------------------------------------------------------------- /sources/charbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/charbuf.h -------------------------------------------------------------------------------- /sources/common/Makefile_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/Makefile_common -------------------------------------------------------------------------------- /sources/common/amalgam_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/amalgam_common.sh -------------------------------------------------------------------------------- /sources/common/cov_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/cov_common.sh -------------------------------------------------------------------------------- /sources/common/json_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/json_check.py -------------------------------------------------------------------------------- /sources/common/ok_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/ok_common.sh -------------------------------------------------------------------------------- /sources/common/test_bison.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/test_bison.sh -------------------------------------------------------------------------------- /sources/common/test_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/test_common.sh -------------------------------------------------------------------------------- /sources/common/test_flex.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/test_flex.sh -------------------------------------------------------------------------------- /sources/common/test_helpers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/test_helpers.sh -------------------------------------------------------------------------------- /sources/common/update_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/common/update_docs.sh -------------------------------------------------------------------------------- /sources/compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/compat.c -------------------------------------------------------------------------------- /sources/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/compat.h -------------------------------------------------------------------------------- /sources/cov.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cov.sh -------------------------------------------------------------------------------- /sources/cql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cql.h -------------------------------------------------------------------------------- /sources/cql.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cql.l -------------------------------------------------------------------------------- /sources/cql.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cql.y -------------------------------------------------------------------------------- /sources/cqljson/cqljson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqljson/cqljson.py -------------------------------------------------------------------------------- /sources/cqlrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt.c -------------------------------------------------------------------------------- /sources/cqlrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt.h -------------------------------------------------------------------------------- /sources/cqlrt.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt.lua -------------------------------------------------------------------------------- /sources/cqlrt_cf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/.gitignore -------------------------------------------------------------------------------- /sources/cqlrt_cf/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/clean.sh -------------------------------------------------------------------------------- /sources/cqlrt_cf/cqlholder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/cqlholder.m -------------------------------------------------------------------------------- /sources/cqlrt_cf/cqlrt_cf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/cqlrt_cf.c -------------------------------------------------------------------------------- /sources/cqlrt_cf/cqlrt_cf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/cqlrt_cf.h -------------------------------------------------------------------------------- /sources/cqlrt_cf/demo_main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/demo_main.m -------------------------------------------------------------------------------- /sources/cqlrt_cf/demo_todo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/demo_todo.sql -------------------------------------------------------------------------------- /sources/cqlrt_cf/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_cf/make.sh -------------------------------------------------------------------------------- /sources/cqlrt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_common.c -------------------------------------------------------------------------------- /sources/cqlrt_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/cqlrt_common.h -------------------------------------------------------------------------------- /sources/crc64xz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/crc64xz.c -------------------------------------------------------------------------------- /sources/crc64xz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/crc64xz.h -------------------------------------------------------------------------------- /sources/demo/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/demo/demo.sh -------------------------------------------------------------------------------- /sources/demo/demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/demo/demo.sql -------------------------------------------------------------------------------- /sources/demo/demo_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/demo/demo_client.c -------------------------------------------------------------------------------- /sources/diags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/diags.h -------------------------------------------------------------------------------- /sources/dotpng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/dotpng.sh -------------------------------------------------------------------------------- /sources/encoders.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/encoders.c -------------------------------------------------------------------------------- /sources/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/encoders.h -------------------------------------------------------------------------------- /sources/eval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/eval.c -------------------------------------------------------------------------------- /sources/eval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/eval.h -------------------------------------------------------------------------------- /sources/flow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/flow.c -------------------------------------------------------------------------------- /sources/flow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/flow.h -------------------------------------------------------------------------------- /sources/gen_sql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/gen_sql.c -------------------------------------------------------------------------------- /sources/gen_sql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/gen_sql.h -------------------------------------------------------------------------------- /sources/grammar_docs/cql_grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/cql_grammar.md -------------------------------------------------------------------------------- /sources/grammar_docs/cql_grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/cql_grammar.txt -------------------------------------------------------------------------------- /sources/grammar_docs/diagram_tweaks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/diagram_tweaks.txt -------------------------------------------------------------------------------- /sources/grammar_docs/grammar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/grammar.js -------------------------------------------------------------------------------- /sources/grammar_docs/json_grammar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/json_grammar.md -------------------------------------------------------------------------------- /sources/grammar_docs/json_grammar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/json_grammar.txt -------------------------------------------------------------------------------- /sources/grammar_docs/json_replacements.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/json_replacements.l -------------------------------------------------------------------------------- /sources/grammar_docs/make_grammar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/make_grammar.sh -------------------------------------------------------------------------------- /sources/grammar_docs/make_json_grammar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/make_json_grammar.sh -------------------------------------------------------------------------------- /sources/grammar_docs/replacements.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/replacements.l -------------------------------------------------------------------------------- /sources/grammar_docs/tree_sitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/tree_sitter.py -------------------------------------------------------------------------------- /sources/grammar_docs/ys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/grammar_docs/ys.c -------------------------------------------------------------------------------- /sources/java_demo/CGSQLMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/CGSQLMain.java -------------------------------------------------------------------------------- /sources/java_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/README.md -------------------------------------------------------------------------------- /sources/java_demo/Sample.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/Sample.sql -------------------------------------------------------------------------------- /sources/java_demo/TestResult.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/TestResult.c -------------------------------------------------------------------------------- /sources/java_demo/TestResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/TestResult.java -------------------------------------------------------------------------------- /sources/java_demo/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/clean.sh -------------------------------------------------------------------------------- /sources/java_demo/com/facebook/cgsql/CQLResultSet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/com/facebook/cgsql/CQLResultSet.java -------------------------------------------------------------------------------- /sources/java_demo/com/facebook/cgsql/CQLViewModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/com/facebook/cgsql/CQLViewModel.java -------------------------------------------------------------------------------- /sources/java_demo/com/facebook/cgsql/EncodedString.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/com/facebook/cgsql/EncodedString.java -------------------------------------------------------------------------------- /sources/java_demo/com_facebook_cgsql_CQLResultSet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/com_facebook_cgsql_CQLResultSet.c -------------------------------------------------------------------------------- /sources/java_demo/cqljava.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/cqljava.py -------------------------------------------------------------------------------- /sources/java_demo/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/java_demo/make.sh -------------------------------------------------------------------------------- /sources/json_test/json_test.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/json_test/json_test.l -------------------------------------------------------------------------------- /sources/json_test/json_test.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/json_test/json_test.y -------------------------------------------------------------------------------- /sources/linetester/linetest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/linetester/linetest.c -------------------------------------------------------------------------------- /sources/linetester/linetest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/linetester/linetest.h -------------------------------------------------------------------------------- /sources/linetester/linetest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/linetester/linetest.sql -------------------------------------------------------------------------------- /sources/linetester/linetest_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/linetester/linetest_main.c -------------------------------------------------------------------------------- /sources/linetester/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/linetester/regen.sh -------------------------------------------------------------------------------- /sources/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/list.c -------------------------------------------------------------------------------- /sources/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/list.h -------------------------------------------------------------------------------- /sources/lua_demo/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/README -------------------------------------------------------------------------------- /sources/lua_demo/demo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/demo.sh -------------------------------------------------------------------------------- /sources/lua_demo/demo.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/demo.sql -------------------------------------------------------------------------------- /sources/lua_demo/lua_upgrade0.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/lua_upgrade0.ref -------------------------------------------------------------------------------- /sources/lua_demo/lua_upgrade1.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/lua_upgrade1.ref -------------------------------------------------------------------------------- /sources/lua_demo/lua_upgrade2.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/lua_upgrade2.ref -------------------------------------------------------------------------------- /sources/lua_demo/lua_upgrade3.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/lua_upgrade3.ref -------------------------------------------------------------------------------- /sources/lua_demo/lua_upgrade4.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/lua_upgrade4.ref -------------------------------------------------------------------------------- /sources/lua_demo/prepare_run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/prepare_run_test.sh -------------------------------------------------------------------------------- /sources/lua_demo/run_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/run_test.sh -------------------------------------------------------------------------------- /sources/lua_demo/t1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/t1.sql -------------------------------------------------------------------------------- /sources/lua_demo/t2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/t2.sql -------------------------------------------------------------------------------- /sources/lua_demo/t3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/t3.sql -------------------------------------------------------------------------------- /sources/lua_demo/t4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/t4.sql -------------------------------------------------------------------------------- /sources/lua_demo/t5.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/t5.sql -------------------------------------------------------------------------------- /sources/lua_demo/t6.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/t6.sql -------------------------------------------------------------------------------- /sources/lua_demo/test_helpers.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/test_helpers.lua -------------------------------------------------------------------------------- /sources/lua_demo/upgrade_harness.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/lua_demo/upgrade_harness.cql -------------------------------------------------------------------------------- /sources/make_amalgam.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/make_amalgam.sh -------------------------------------------------------------------------------- /sources/minipool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/minipool.c -------------------------------------------------------------------------------- /sources/minipool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/minipool.h -------------------------------------------------------------------------------- /sources/ok.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/ok.sh -------------------------------------------------------------------------------- /sources/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/printf.c -------------------------------------------------------------------------------- /sources/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/printf.h -------------------------------------------------------------------------------- /sources/query_plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/query_plan.sh -------------------------------------------------------------------------------- /sources/query_plan_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/query_plan_test.c -------------------------------------------------------------------------------- /sources/repl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/README.md -------------------------------------------------------------------------------- /sources/repl/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/clean.sh -------------------------------------------------------------------------------- /sources/repl/clean_query_plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/clean_query_plan.sh -------------------------------------------------------------------------------- /sources/repl/go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/go.sh -------------------------------------------------------------------------------- /sources/repl/go.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/go.sql -------------------------------------------------------------------------------- /sources/repl/go_query_plan.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/go_query_plan.sh -------------------------------------------------------------------------------- /sources/repl/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/repl/main.c -------------------------------------------------------------------------------- /sources/result_set_extension.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/result_set_extension.c -------------------------------------------------------------------------------- /sources/rewrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/rewrite.c -------------------------------------------------------------------------------- /sources/rewrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/rewrite.h -------------------------------------------------------------------------------- /sources/rt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/rt.c -------------------------------------------------------------------------------- /sources/rt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/rt.h -------------------------------------------------------------------------------- /sources/rt_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/rt_common.c -------------------------------------------------------------------------------- /sources/run_test_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/run_test_client.c -------------------------------------------------------------------------------- /sources/sem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/sem.c -------------------------------------------------------------------------------- /sources/sem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/sem.h -------------------------------------------------------------------------------- /sources/sha256.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/sha256.c -------------------------------------------------------------------------------- /sources/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/sha256.h -------------------------------------------------------------------------------- /sources/symtab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/symtab.c -------------------------------------------------------------------------------- /sources/symtab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/symtab.h -------------------------------------------------------------------------------- /sources/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test.sh -------------------------------------------------------------------------------- /sources/test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/LICENSE -------------------------------------------------------------------------------- /sources/test/alt_cqlrt.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/amalgam_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/amalgam_test.c -------------------------------------------------------------------------------- /sources/test/asm_query_ns_needed.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/asm_query_ns_needed.err.ref -------------------------------------------------------------------------------- /sources/test/badpath.err.ref: -------------------------------------------------------------------------------- 1 | unable to open '/xx/yy/zz' for read 2 | -------------------------------------------------------------------------------- /sources/test/bigquote.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/bigquote.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/bigquote.sql -------------------------------------------------------------------------------- /sources/test/c_include_namespace_missing.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/c_include_namespace_missing.err.ref -------------------------------------------------------------------------------- /sources/test/c_include_needed.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/c_include_needed.err.ref -------------------------------------------------------------------------------- /sources/test/cg_1_2.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_1_2.err.ref -------------------------------------------------------------------------------- /sources/test/cg_requires_file.err.ref: -------------------------------------------------------------------------------- 1 | --cg requires additional arguments. 2 | -------------------------------------------------------------------------------- /sources/test/cg_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test.sql -------------------------------------------------------------------------------- /sources/test/cg_test_assembly_query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_assembly_query.sql -------------------------------------------------------------------------------- /sources/test/cg_test_assembly_query_c.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_assembly_query_c.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_assembly_query_c.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_assembly_query_c.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_assembly_query_json.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_assembly_query_json.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_assembly_query_objc.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_assembly_query_objc.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_base_fragment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_base_fragment.sql -------------------------------------------------------------------------------- /sources/test/cg_test_base_fragment_c.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_base_fragment_c.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_base_fragment_c.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_base_fragment_c.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_base_fragment_json.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_base_fragment_json.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_base_fragment_objc.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_base_fragment_objc.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_c.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_globals.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_globals.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_globals.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_globals.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_globals.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_globals.sql -------------------------------------------------------------------------------- /sources/test/cg_test_c_type_getters.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_type_getters.sql -------------------------------------------------------------------------------- /sources/test/cg_test_c_with_header.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_with_header.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_with_header.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_with_header.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_with_namespace.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_with_namespace.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_with_namespace.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_with_namespace.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_with_type_getters.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_with_type_getters.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_c_with_type_getters.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_c_with_type_getters.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_exports.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_exports.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_extension_fragment.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_extension_fragment.sql -------------------------------------------------------------------------------- /sources/test/cg_test_extension_fragment_c.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_extension_fragment_c.c.ref -------------------------------------------------------------------------------- /sources/test/cg_test_extension_fragment_c.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_extension_fragment_c.h.ref -------------------------------------------------------------------------------- /sources/test/cg_test_extension_fragment_json.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_extension_fragment_json.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_extension_fragment_objc.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_extension_fragment_objc.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_generated_from.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_generated_from.sql -------------------------------------------------------------------------------- /sources/test/cg_test_json_schema.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_json_schema.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_json_schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_json_schema.sql -------------------------------------------------------------------------------- /sources/test/cg_test_lua.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_lua.lua.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_lua.lua.ref -------------------------------------------------------------------------------- /sources/test/cg_test_lua.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_lua.sql -------------------------------------------------------------------------------- /sources/test/cg_test_no_result_set.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_no_result_set.sql -------------------------------------------------------------------------------- /sources/test/cg_test_objc.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_objc.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_objc.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_out_object.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_out_object.sql -------------------------------------------------------------------------------- /sources/test/cg_test_prev_invalid.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_prev_invalid.sql -------------------------------------------------------------------------------- /sources/test/cg_test_query_plan.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_query_plan.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_query_plan.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_query_plan.sql -------------------------------------------------------------------------------- /sources/test/cg_test_query_plan_js.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_query_plan_js.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_schema_min_version_upgrade.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_schema_min_version_upgrade.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_schema_min_version_upgrade.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_schema_partial_upgrade.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_schema_partial_upgrade.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_schema_partial_upgrade.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_schema_prev.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_schema_prev.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_schema_prev.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_schema_sqlite.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_schema_sqlite.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_schema_sqlite.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_schema_upgrade.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/cg_test_schema_upgrade.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_schema_upgrade.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_schema_upgrade.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_schema_upgrade.sql -------------------------------------------------------------------------------- /sources/test/cg_test_test_helpers.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_test_helpers.out.ref -------------------------------------------------------------------------------- /sources/test/cg_test_test_helpers.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cg_test_test_helpers.sql -------------------------------------------------------------------------------- /sources/test/cql_amalgam_test.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cql_amalgam_test.err.ref -------------------------------------------------------------------------------- /sources/test/cql_amalgam_test.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cql_amalgam_test.out.ref -------------------------------------------------------------------------------- /sources/test/cql_amalgam_test_semantic_error.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cql_amalgam_test_semantic_error.sql -------------------------------------------------------------------------------- /sources/test/cql_amalgam_test_success.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cql_amalgam_test_success.sql -------------------------------------------------------------------------------- /sources/test/cql_amalgam_test_syntax_error.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cql_amalgam_test_syntax_error.sql -------------------------------------------------------------------------------- /sources/test/cqlrt_arg_missing.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cqlrt_arg_missing.err.ref -------------------------------------------------------------------------------- /sources/test/cqltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cqltest.c -------------------------------------------------------------------------------- /sources/test/cqltest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/cqltest.h -------------------------------------------------------------------------------- /sources/test/dottest.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/dottest.out.ref -------------------------------------------------------------------------------- /sources/test/dottest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/dottest.sql -------------------------------------------------------------------------------- /sources/test/error.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/error.sql -------------------------------------------------------------------------------- /sources/test/excl_invalid_regions.err.ref: -------------------------------------------------------------------------------- 1 | invalid region specified 'bogus' 2 | -------------------------------------------------------------------------------- /sources/test/gen_exports_args.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/gen_exports_args.err.ref -------------------------------------------------------------------------------- /sources/test/generate_file_file.err.ref: -------------------------------------------------------------------------------- 1 | unknown arg '--generate_file_type' 2 | -------------------------------------------------------------------------------- /sources/test/generate_file_type.err.ref: -------------------------------------------------------------------------------- 1 | unknown arg '--generate_file_type' 2 | -------------------------------------------------------------------------------- /sources/test/global_proc_missing.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/global_proc_missing.err.ref -------------------------------------------------------------------------------- /sources/test/global_proc_needed.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/global_proc_needed.err.ref -------------------------------------------------------------------------------- /sources/test/in_arg_missing.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/in_arg_missing.err.ref -------------------------------------------------------------------------------- /sources/test/inc_invalid_regions.err.ref: -------------------------------------------------------------------------------- 1 | invalid region specified 'bogus' 2 | -------------------------------------------------------------------------------- /sources/test/invalid_arg.err.ref: -------------------------------------------------------------------------------- 1 | unknown arg '--garbonzo!!' 2 | -------------------------------------------------------------------------------- /sources/test/linetest.expected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/linetest.expected -------------------------------------------------------------------------------- /sources/test/linetest.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/linetest.sql -------------------------------------------------------------------------------- /sources/test/noresult.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/noresult.sql -------------------------------------------------------------------------------- /sources/test/objc_include_missing.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/objc_include_missing.err.ref -------------------------------------------------------------------------------- /sources/test/objc_no_results.err.ref: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sources/test/parse_test_cql_inferred_notnull.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/parse_test_cql_inferred_notnull.err.ref -------------------------------------------------------------------------------- /sources/test/parse_test_cql_inferred_notnull.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/parse_test_cql_inferred_notnull.sql -------------------------------------------------------------------------------- /sources/test/parse_test_fetch_from_call_columns.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/parse_test_fetch_from_call_columns.err.ref -------------------------------------------------------------------------------- /sources/test/parse_test_fetch_from_call_columns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/parse_test_fetch_from_call_columns.sql -------------------------------------------------------------------------------- /sources/test/prev_and_codegen_incompat.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/prev_and_codegen_incompat.err.ref -------------------------------------------------------------------------------- /sources/test/rt_arg_bogus.err.ref: -------------------------------------------------------------------------------- 1 | unknown cg runtime 'foo' 2 | -------------------------------------------------------------------------------- /sources/test/rt_arg_missing.err.ref: -------------------------------------------------------------------------------- 1 | --rt requires an additional param (e.g., c, objc, json_schema). 2 | -------------------------------------------------------------------------------- /sources/test/run_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/run_test.sql -------------------------------------------------------------------------------- /sources/test/schema_version_error.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/schema_version_error.sql -------------------------------------------------------------------------------- /sources/test/schema_version_ok.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/schema_version_ok.sql -------------------------------------------------------------------------------- /sources/test/sem_abort.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_abort.err.ref -------------------------------------------------------------------------------- /sources/test/sem_test.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test.err.ref -------------------------------------------------------------------------------- /sources/test/sem_test.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test.out.ref -------------------------------------------------------------------------------- /sources/test/sem_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test.sql -------------------------------------------------------------------------------- /sources/test/sem_test_dev.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_dev.err.ref -------------------------------------------------------------------------------- /sources/test/sem_test_dev.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_dev.out.ref -------------------------------------------------------------------------------- /sources/test/sem_test_dev.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_dev.sql -------------------------------------------------------------------------------- /sources/test/sem_test_migrate.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_migrate.err.ref -------------------------------------------------------------------------------- /sources/test/sem_test_migrate.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_migrate.out.ref -------------------------------------------------------------------------------- /sources/test/sem_test_migrate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_migrate.sql -------------------------------------------------------------------------------- /sources/test/sem_test_prev.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_prev.err.ref -------------------------------------------------------------------------------- /sources/test/sem_test_prev.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_prev.out.ref -------------------------------------------------------------------------------- /sources/test/sem_test_prev.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/sem_test_prev.sql -------------------------------------------------------------------------------- /sources/test/semantic_error.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/semantic_error.sql -------------------------------------------------------------------------------- /sources/test/simple_error.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/simple_error.err.ref -------------------------------------------------------------------------------- /sources/test/stats.csv.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/stats.csv.ref -------------------------------------------------------------------------------- /sources/test/stats_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/stats_test.sql -------------------------------------------------------------------------------- /sources/test/test.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/test.out.ref -------------------------------------------------------------------------------- /sources/test/test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/test.sql -------------------------------------------------------------------------------- /sources/test/udf.c.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/udf.c.ref -------------------------------------------------------------------------------- /sources/test/udf.h.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/udf.h.ref -------------------------------------------------------------------------------- /sources/test/unwriteable.err.ref: -------------------------------------------------------------------------------- 1 | unable to open /xx/yy/zz for write 2 | -------------------------------------------------------------------------------- /sources/test/upgrade_schema_v0.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/upgrade_schema_v0.out.ref -------------------------------------------------------------------------------- /sources/test/upgrade_schema_v1.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/upgrade_schema_v1.out.ref -------------------------------------------------------------------------------- /sources/test/upgrade_schema_v2.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/upgrade_schema_v2.out.ref -------------------------------------------------------------------------------- /sources/test/upgrade_schema_v3.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/upgrade_schema_v3.out.ref -------------------------------------------------------------------------------- /sources/test/upgrade_schema_v4.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/upgrade_schema_v4.out.ref -------------------------------------------------------------------------------- /sources/test/usage.out.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/usage.out.ref -------------------------------------------------------------------------------- /sources/test/write_fail.err.ref: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/write_fail.err.ref -------------------------------------------------------------------------------- /sources/test/writefails.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test/writefails.sql -------------------------------------------------------------------------------- /sources/test_helpers_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/test_helpers_test.c -------------------------------------------------------------------------------- /sources/tester/dbhelp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/tester/dbhelp.c -------------------------------------------------------------------------------- /sources/tester/dbhelp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/tester/dbhelp.h -------------------------------------------------------------------------------- /sources/tester/dbhelp.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/tester/dbhelp.sql -------------------------------------------------------------------------------- /sources/tester/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/tester/main.c -------------------------------------------------------------------------------- /sources/tester/regen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/tester/regen.sh -------------------------------------------------------------------------------- /sources/unit_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/unit_tests.c -------------------------------------------------------------------------------- /sources/unit_tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/unit_tests.h -------------------------------------------------------------------------------- /sources/update_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/update_docs.sh -------------------------------------------------------------------------------- /sources/upgrade/SchemaPersistentV0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/SchemaPersistentV0.sql -------------------------------------------------------------------------------- /sources/upgrade/SchemaPersistentV1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/SchemaPersistentV1.sql -------------------------------------------------------------------------------- /sources/upgrade/SchemaPersistentV2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/SchemaPersistentV2.sql -------------------------------------------------------------------------------- /sources/upgrade/SchemaPersistentV3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/SchemaPersistentV3.sql -------------------------------------------------------------------------------- /sources/upgrade/SchemaPersistentV4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/SchemaPersistentV4.sql -------------------------------------------------------------------------------- /sources/upgrade/downgrade_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/downgrade_test.c -------------------------------------------------------------------------------- /sources/upgrade/errortrace.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/errortrace.inc -------------------------------------------------------------------------------- /sources/upgrade/upgrade_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/upgrade_test.c -------------------------------------------------------------------------------- /sources/upgrade/upgrade_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/upgrade_test.sh -------------------------------------------------------------------------------- /sources/upgrade/upgrade_validate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/sources/upgrade/upgrade_validate.sql -------------------------------------------------------------------------------- /website/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/.eslintrc.js -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | .docusaurus 4 | -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/.prettierrc -------------------------------------------------------------------------------- /website/.stylelintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/.stylelintrc.js -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/blog/2020-10-12-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-10-12-welcome.md -------------------------------------------------------------------------------- /website/blog/2020-11-12-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-11-12-update.md -------------------------------------------------------------------------------- /website/blog/2020-11-15-boxed-cursors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-11-15-boxed-cursors.md -------------------------------------------------------------------------------- /website/blog/2020-11-16-error-tracing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-11-16-error-tracing.md -------------------------------------------------------------------------------- /website/blog/2020-11-18-error-tracing-macro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-11-18-error-tracing-macro.md -------------------------------------------------------------------------------- /website/blog/2020-11-20-like-forms-tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-11-20-like-forms-tutorial.md -------------------------------------------------------------------------------- /website/blog/2020-12-03-declare-enum-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-12-03-declare-enum-intro.md -------------------------------------------------------------------------------- /website/blog/2020-12-08-arg-bundle-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-12-08-arg-bundle-intro.md -------------------------------------------------------------------------------- /website/blog/2020-12-16-virtual-table-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2020-12-16-virtual-table-intro.md -------------------------------------------------------------------------------- /website/blog/2021-01-14-named-types-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-01-14-named-types-intro.md -------------------------------------------------------------------------------- /website/blog/2021-01-20-type-kinds-intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-01-20-type-kinds-intro.md -------------------------------------------------------------------------------- /website/blog/2021-02-10-free-empty-results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-02-10-free-empty-results.md -------------------------------------------------------------------------------- /website/blog/2021-02-14-select-if-nothing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-02-14-select-if-nothing.md -------------------------------------------------------------------------------- /website/blog/2021-02-21-result-variable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-02-21-result-variable.md -------------------------------------------------------------------------------- /website/blog/2021-12-14-shared-fragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-12-14-shared-fragments.md -------------------------------------------------------------------------------- /website/blog/2021-12-30-flow-analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2021-12-30-flow-analysis.md -------------------------------------------------------------------------------- /website/blog/2022-02-03-columns-sugar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-02-03-columns-sugar.md -------------------------------------------------------------------------------- /website/blog/2022-02-19-expression-frags.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-02-19-expression-frags.md -------------------------------------------------------------------------------- /website/blog/2022-02-21-from-general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-02-21-from-general.md -------------------------------------------------------------------------------- /website/blog/2022-03-17-blob-storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-03-17-blob-storage.md -------------------------------------------------------------------------------- /website/blog/2022-10-05-backed-tables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-10-05-backed-tables.md -------------------------------------------------------------------------------- /website/blog/2022-10-06-parent-child.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-10-06-parent-child.md -------------------------------------------------------------------------------- /website/blog/2022-11-07-schema-notes-2022.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/blog/2022-11-07-schema-notes-2022.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/package.json -------------------------------------------------------------------------------- /website/plugins/my-loaders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/plugins/my-loaders/index.js -------------------------------------------------------------------------------- /website/sidebars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/sidebars.js -------------------------------------------------------------------------------- /website/sidebarsGuide.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/sidebarsGuide.js -------------------------------------------------------------------------------- /website/src/components/DiagramContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/src/components/DiagramContent.js -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/src/pages/index.js -------------------------------------------------------------------------------- /website/src/pages/json-diagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/src/pages/json-diagram.js -------------------------------------------------------------------------------- /website/src/pages/program-diagram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/src/pages/program-diagram.js -------------------------------------------------------------------------------- /website/src/pages/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/src/pages/styles.module.css -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | cgsql.dev 2 | -------------------------------------------------------------------------------- /website/static/img/CGSQL-Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/static/img/CGSQL-Icon.png -------------------------------------------------------------------------------- /website/static/img/CGSQL-Icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/static/img/CGSQL-Icon.svg -------------------------------------------------------------------------------- /website/static/img/CGSQL-Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/static/img/CGSQL-Logo.png -------------------------------------------------------------------------------- /website/static/img/CGSQL-Logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/static/img/CGSQL-Logo.svg -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/oss_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/static/img/oss_logo.png -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookincubator/CG-SQL/HEAD/website/yarn.lock --------------------------------------------------------------------------------