├── .github └── workflows │ ├── run_runner_test_harness.yml │ └── snowflake_regression_tests.yml ├── .gitignore ├── COPYRIGHT ├── Dockerfile ├── LICENSE.md ├── Makefile ├── README.md ├── README_RELEASE_PROCEDURE.md ├── docker └── Dockerfile ├── docs ├── converting.md ├── creating.md ├── img │ ├── favicon.ico │ ├── logo-dark.png │ └── logo-light.png ├── index.md ├── overrides │ └── partials │ │ └── logo.html ├── review_seq.md ├── snowflake_functions.md └── stylesheets │ └── extra.css ├── expected └── conversion.out ├── hibernate.md ├── mkdocs.yml ├── snowflake--1.0--1.1.sql ├── snowflake--1.0.sql ├── snowflake--1.1--1.2.sql ├── snowflake--1.1.sql ├── snowflake--1.2--2.0.sql ├── snowflake--1.2.sql ├── snowflake--2.0--2.2.sql ├── snowflake--2.0.sql ├── snowflake--2.2--2.3.sql ├── snowflake--2.2.sql ├── snowflake--2.3--2.4.sql ├── snowflake--2.3.sql ├── snowflake.c ├── snowflake.control ├── sql └── conversion.sql ├── test ├── entrypoint.sh ├── runner.py ├── runner_dependencies.md ├── schedule_files │ └── script_file └── t │ ├── .DS_Store │ ├── lib │ ├── 14config.env │ ├── 15config.env │ ├── 16config.env │ └── 17config.env │ ├── snowflake.py │ ├── snowflake_script.py │ ├── snowflake_spock_cmds.py │ ├── temp.sh │ └── util_test.py └── tests_in_docker.yml /.github/workflows/run_runner_test_harness.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/.github/workflows/run_runner_test_harness.yml -------------------------------------------------------------------------------- /.github/workflows/snowflake_regression_tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/.github/workflows/snowflake_regression_tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYRIGHT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/COPYRIGHT -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/README.md -------------------------------------------------------------------------------- /README_RELEASE_PROCEDURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/README_RELEASE_PROCEDURE.md -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docs/converting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/converting.md -------------------------------------------------------------------------------- /docs/creating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/creating.md -------------------------------------------------------------------------------- /docs/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/img/favicon.ico -------------------------------------------------------------------------------- /docs/img/logo-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/img/logo-dark.png -------------------------------------------------------------------------------- /docs/img/logo-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/img/logo-light.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/overrides/partials/logo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/overrides/partials/logo.html -------------------------------------------------------------------------------- /docs/review_seq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/review_seq.md -------------------------------------------------------------------------------- /docs/snowflake_functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/snowflake_functions.md -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/docs/stylesheets/extra.css -------------------------------------------------------------------------------- /expected/conversion.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/expected/conversion.out -------------------------------------------------------------------------------- /hibernate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/hibernate.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /snowflake--1.0--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--1.0--1.1.sql -------------------------------------------------------------------------------- /snowflake--1.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--1.0.sql -------------------------------------------------------------------------------- /snowflake--1.1--1.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--1.1--1.2.sql -------------------------------------------------------------------------------- /snowflake--1.1.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--1.1.sql -------------------------------------------------------------------------------- /snowflake--1.2--2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--1.2--2.0.sql -------------------------------------------------------------------------------- /snowflake--1.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--1.2.sql -------------------------------------------------------------------------------- /snowflake--2.0--2.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--2.0--2.2.sql -------------------------------------------------------------------------------- /snowflake--2.0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--2.0.sql -------------------------------------------------------------------------------- /snowflake--2.2--2.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--2.2--2.3.sql -------------------------------------------------------------------------------- /snowflake--2.2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--2.2.sql -------------------------------------------------------------------------------- /snowflake--2.3--2.4.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--2.3--2.4.sql -------------------------------------------------------------------------------- /snowflake--2.3.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake--2.3.sql -------------------------------------------------------------------------------- /snowflake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake.c -------------------------------------------------------------------------------- /snowflake.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/snowflake.control -------------------------------------------------------------------------------- /sql/conversion.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/sql/conversion.sql -------------------------------------------------------------------------------- /test/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/entrypoint.sh -------------------------------------------------------------------------------- /test/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/runner.py -------------------------------------------------------------------------------- /test/runner_dependencies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/runner_dependencies.md -------------------------------------------------------------------------------- /test/schedule_files/script_file: -------------------------------------------------------------------------------- 1 | test/t/temp.sh 2 | -------------------------------------------------------------------------------- /test/t/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/.DS_Store -------------------------------------------------------------------------------- /test/t/lib/14config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/lib/14config.env -------------------------------------------------------------------------------- /test/t/lib/15config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/lib/15config.env -------------------------------------------------------------------------------- /test/t/lib/16config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/lib/16config.env -------------------------------------------------------------------------------- /test/t/lib/17config.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/lib/17config.env -------------------------------------------------------------------------------- /test/t/snowflake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/snowflake.py -------------------------------------------------------------------------------- /test/t/snowflake_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/snowflake_script.py -------------------------------------------------------------------------------- /test/t/snowflake_spock_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/snowflake_spock_cmds.py -------------------------------------------------------------------------------- /test/t/temp.sh: -------------------------------------------------------------------------------- 1 | psql -U postgres -h 127.0.0.1 -e -c "CREATE EXTENSION snowflake" 2 | -------------------------------------------------------------------------------- /test/t/util_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/test/t/util_test.py -------------------------------------------------------------------------------- /tests_in_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pgEdge/snowflake/HEAD/tests_in_docker.yml --------------------------------------------------------------------------------