├── .coveragerc ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── .pylintrc ├── .travis.yml ├── CHANGELOG ├── CMakeLists.txt ├── LICENSE ├── META.json ├── Makefile ├── README.md ├── doc ├── Makefile ├── _static │ ├── css │ │ └── custom.css │ └── img │ │ ├── glyphicons-142-database-plus.png │ │ ├── glyphicons-151-edit.png │ │ ├── glyphicons-352-book-open.png │ │ └── glyphicons-419-disk-import.png ├── api.rst ├── conf.py ├── contribute.rst ├── foreign-data-wrappers.rst ├── foreign-data-wrappers │ ├── csvfdw.rst │ ├── fsfdw.rst │ ├── imapfdw.rst │ ├── ldapfdw.rst │ ├── processfdw.rst │ ├── rssfdw.rst │ └── sqlalchemyfdw.rst ├── getting-started.rst ├── implementing-an-fdw.rst ├── implementing-tutorial.rst ├── index.rst ├── installation.rst ├── internals.rst ├── multicorn.md ├── multicorn_directives │ └── __init__.py ├── requirements.txt └── third-party-fdw.rst ├── docheck ├── docker ├── py2-10 │ └── Dockerfile ├── py2-11 │ └── Dockerfile ├── py2-12 │ └── Dockerfile ├── py2-9.6 │ └── Dockerfile ├── py3-10 │ └── Dockerfile ├── py3-11 │ └── Dockerfile ├── py3-12 │ └── Dockerfile └── py3-9.6 │ └── Dockerfile ├── multicorn.control ├── preflight-check.sh ├── python └── multicorn │ ├── __init__.py │ ├── compat.py │ ├── csvfdw.py │ ├── fsfdw │ ├── __init__.py │ ├── docutils_meta.py │ ├── restfsfdw.py │ ├── structuredfs.py │ └── test.py │ ├── gcfdw.py │ ├── gitfdw.py │ ├── googlefdw.py │ ├── imapfdw.py │ ├── ldapfdw.py │ ├── processfdw.py │ ├── rssfdw.py │ ├── sqlalchemyfdw.py │ ├── statefdw.py │ ├── testfdw.py │ ├── utils.py │ └── xmlfdw.py ├── setup.cfg ├── setup.py ├── sql └── multicorn.sql ├── src ├── errors.c ├── multicorn.c ├── multicorn.h ├── python.c ├── query.c └── utils.c ├── test-2.6 ├── test-2.7 ├── expected │ ├── import_sqlalchemy.out │ ├── import_test-windows.out │ ├── import_test.out │ ├── multicorn_alchemy_test.out │ ├── multicorn_cache_invalidation.out │ ├── multicorn_column_options_test.out │ ├── multicorn_error_test.out │ ├── multicorn_logger_test.out │ ├── multicorn_planner_test.out │ ├── multicorn_planner_test_1.out │ ├── multicorn_regression_test-windows.out │ ├── multicorn_regression_test.out │ ├── multicorn_sequence_test-windows.out │ ├── multicorn_sequence_test.out │ ├── multicorn_test_date.out │ ├── multicorn_test_dict.out │ ├── multicorn_test_list.out │ ├── multicorn_test_sort-windows.out │ ├── multicorn_test_sort.out │ ├── write_filesystem.out │ ├── write_savepoints-windows.out │ ├── write_savepoints.out │ ├── write_sqlalchemy.out │ ├── write_test-windows.out │ └── write_test.out ├── resultmap ├── sql │ ├── disable_jit.include │ ├── import_sqlalchemy.sql │ ├── import_test.sql │ ├── multicorn_alchemy_test.sql │ ├── multicorn_cache_invalidation.sql │ ├── multicorn_column_options_test.sql │ ├── multicorn_error_test.sql │ ├── multicorn_logger_test.sql │ ├── multicorn_planner_test.sql │ ├── multicorn_regression_test.sql │ ├── multicorn_sequence_test.sql │ ├── multicorn_test_date.sql │ ├── multicorn_test_dict.sql │ ├── multicorn_test_list.sql │ ├── multicorn_test_sort.sql │ ├── write_filesystem.sql │ ├── write_savepoints.sql │ ├── write_sqlalchemy.sql │ └── write_test.sql └── windows ├── test-3.3 ├── expected │ ├── import_sqlalchemy.out │ ├── import_test.out │ ├── multicorn_alchemy_test.out │ ├── multicorn_cache_invalidation.out │ ├── multicorn_column_options_test.out │ ├── multicorn_error_test.out │ ├── multicorn_logger_test.out │ ├── multicorn_planner_test.out │ ├── multicorn_planner_test_1.out │ ├── multicorn_regression_test.out │ ├── multicorn_sequence_test.out │ ├── multicorn_test_date.out │ ├── multicorn_test_dict.out │ ├── multicorn_test_list.out │ ├── multicorn_test_sort.out │ ├── write_filesystem.out │ ├── write_savepoints.out │ ├── write_sqlalchemy.out │ └── write_test.out └── sql │ ├── disable_jit.include │ ├── import_sqlalchemy.sql │ ├── import_test.sql │ ├── multicorn_alchemy_test.sql │ ├── multicorn_cache_invalidation.sql │ ├── multicorn_column_options_test.sql │ ├── multicorn_error_test.sql │ ├── multicorn_logger_test.sql │ ├── multicorn_planner_test.sql │ ├── multicorn_regression_test.sql │ ├── multicorn_sequence_test.sql │ ├── multicorn_test_date.sql │ ├── multicorn_test_dict.sql │ ├── multicorn_test_list.sql │ ├── multicorn_test_sort.sql │ ├── write_filesystem.sql │ ├── write_savepoints.sql │ ├── write_sqlalchemy.sql │ └── write_test.sql ├── test-3.4 ├── test-3.5 ├── test-3.7 ├── test-3.8 └── test-common ├── disable_jit.include └── multicorn_testfilesystem.include /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/.gitmodules -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- 1 | [MESSAGES CONTROL] 2 | 3 | disable= 4 | # Too few public methods 5 | R0903, 6 | 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/LICENSE -------------------------------------------------------------------------------- /META.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/META.json -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/README.md -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/_static/css/custom.css -------------------------------------------------------------------------------- /doc/_static/img/glyphicons-142-database-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/_static/img/glyphicons-142-database-plus.png -------------------------------------------------------------------------------- /doc/_static/img/glyphicons-151-edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/_static/img/glyphicons-151-edit.png -------------------------------------------------------------------------------- /doc/_static/img/glyphicons-352-book-open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/_static/img/glyphicons-352-book-open.png -------------------------------------------------------------------------------- /doc/_static/img/glyphicons-419-disk-import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/_static/img/glyphicons-419-disk-import.png -------------------------------------------------------------------------------- /doc/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/api.rst -------------------------------------------------------------------------------- /doc/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/conf.py -------------------------------------------------------------------------------- /doc/contribute.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/contribute.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/csvfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/csvfdw.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/fsfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/fsfdw.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/imapfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/imapfdw.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/ldapfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/ldapfdw.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/processfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/processfdw.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/rssfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/rssfdw.rst -------------------------------------------------------------------------------- /doc/foreign-data-wrappers/sqlalchemyfdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/foreign-data-wrappers/sqlalchemyfdw.rst -------------------------------------------------------------------------------- /doc/getting-started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/getting-started.rst -------------------------------------------------------------------------------- /doc/implementing-an-fdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/implementing-an-fdw.rst -------------------------------------------------------------------------------- /doc/implementing-tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/implementing-tutorial.rst -------------------------------------------------------------------------------- /doc/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/index.rst -------------------------------------------------------------------------------- /doc/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/installation.rst -------------------------------------------------------------------------------- /doc/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/internals.rst -------------------------------------------------------------------------------- /doc/multicorn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/multicorn.md -------------------------------------------------------------------------------- /doc/multicorn_directives/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/multicorn_directives/__init__.py -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/third-party-fdw.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/doc/third-party-fdw.rst -------------------------------------------------------------------------------- /docheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docheck -------------------------------------------------------------------------------- /docker/py2-10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py2-10/Dockerfile -------------------------------------------------------------------------------- /docker/py2-11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py2-11/Dockerfile -------------------------------------------------------------------------------- /docker/py2-12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py2-12/Dockerfile -------------------------------------------------------------------------------- /docker/py2-9.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py2-9.6/Dockerfile -------------------------------------------------------------------------------- /docker/py3-10/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py3-10/Dockerfile -------------------------------------------------------------------------------- /docker/py3-11/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py3-11/Dockerfile -------------------------------------------------------------------------------- /docker/py3-12/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py3-12/Dockerfile -------------------------------------------------------------------------------- /docker/py3-9.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/docker/py3-9.6/Dockerfile -------------------------------------------------------------------------------- /multicorn.control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/multicorn.control -------------------------------------------------------------------------------- /preflight-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/preflight-check.sh -------------------------------------------------------------------------------- /python/multicorn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/__init__.py -------------------------------------------------------------------------------- /python/multicorn/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/compat.py -------------------------------------------------------------------------------- /python/multicorn/csvfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/csvfdw.py -------------------------------------------------------------------------------- /python/multicorn/fsfdw/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/fsfdw/__init__.py -------------------------------------------------------------------------------- /python/multicorn/fsfdw/docutils_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/fsfdw/docutils_meta.py -------------------------------------------------------------------------------- /python/multicorn/fsfdw/restfsfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/fsfdw/restfsfdw.py -------------------------------------------------------------------------------- /python/multicorn/fsfdw/structuredfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/fsfdw/structuredfs.py -------------------------------------------------------------------------------- /python/multicorn/fsfdw/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/fsfdw/test.py -------------------------------------------------------------------------------- /python/multicorn/gcfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/gcfdw.py -------------------------------------------------------------------------------- /python/multicorn/gitfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/gitfdw.py -------------------------------------------------------------------------------- /python/multicorn/googlefdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/googlefdw.py -------------------------------------------------------------------------------- /python/multicorn/imapfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/imapfdw.py -------------------------------------------------------------------------------- /python/multicorn/ldapfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/ldapfdw.py -------------------------------------------------------------------------------- /python/multicorn/processfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/processfdw.py -------------------------------------------------------------------------------- /python/multicorn/rssfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/rssfdw.py -------------------------------------------------------------------------------- /python/multicorn/sqlalchemyfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/sqlalchemyfdw.py -------------------------------------------------------------------------------- /python/multicorn/statefdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/statefdw.py -------------------------------------------------------------------------------- /python/multicorn/testfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/testfdw.py -------------------------------------------------------------------------------- /python/multicorn/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/utils.py -------------------------------------------------------------------------------- /python/multicorn/xmlfdw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/python/multicorn/xmlfdw.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/setup.py -------------------------------------------------------------------------------- /sql/multicorn.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/sql/multicorn.sql -------------------------------------------------------------------------------- /src/errors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/src/errors.c -------------------------------------------------------------------------------- /src/multicorn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/src/multicorn.c -------------------------------------------------------------------------------- /src/multicorn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/src/multicorn.h -------------------------------------------------------------------------------- /src/python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/src/python.c -------------------------------------------------------------------------------- /src/query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/src/query.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/src/utils.c -------------------------------------------------------------------------------- /test-2.6: -------------------------------------------------------------------------------- 1 | test-2.7 -------------------------------------------------------------------------------- /test-2.7/expected/import_sqlalchemy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/import_sqlalchemy.out -------------------------------------------------------------------------------- /test-2.7/expected/import_test-windows.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/import_test-windows.out -------------------------------------------------------------------------------- /test-2.7/expected/import_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/import_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_alchemy_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_alchemy_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_cache_invalidation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_cache_invalidation.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_column_options_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_column_options_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_error_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_error_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_logger_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_logger_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_planner_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_planner_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_planner_test_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_planner_test_1.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_regression_test-windows.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_regression_test-windows.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_regression_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_regression_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_sequence_test-windows.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_sequence_test-windows.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_sequence_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_sequence_test.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_test_date.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_test_date.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_test_dict.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_test_dict.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_test_list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_test_list.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_test_sort-windows.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_test_sort-windows.out -------------------------------------------------------------------------------- /test-2.7/expected/multicorn_test_sort.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/multicorn_test_sort.out -------------------------------------------------------------------------------- /test-2.7/expected/write_filesystem.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/write_filesystem.out -------------------------------------------------------------------------------- /test-2.7/expected/write_savepoints-windows.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/write_savepoints-windows.out -------------------------------------------------------------------------------- /test-2.7/expected/write_savepoints.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/write_savepoints.out -------------------------------------------------------------------------------- /test-2.7/expected/write_sqlalchemy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/write_sqlalchemy.out -------------------------------------------------------------------------------- /test-2.7/expected/write_test-windows.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/write_test-windows.out -------------------------------------------------------------------------------- /test-2.7/expected/write_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/expected/write_test.out -------------------------------------------------------------------------------- /test-2.7/resultmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/resultmap -------------------------------------------------------------------------------- /test-2.7/sql/disable_jit.include: -------------------------------------------------------------------------------- 1 | ../../test-common/disable_jit.include -------------------------------------------------------------------------------- /test-2.7/sql/import_sqlalchemy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/import_sqlalchemy.sql -------------------------------------------------------------------------------- /test-2.7/sql/import_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/import_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_alchemy_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_alchemy_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_cache_invalidation.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_cache_invalidation.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_column_options_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_column_options_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_error_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_error_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_logger_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_logger_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_planner_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_planner_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_regression_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_regression_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_sequence_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_sequence_test.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_test_date.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_test_date.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_test_dict.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_test_dict.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_test_list.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_test_list.sql -------------------------------------------------------------------------------- /test-2.7/sql/multicorn_test_sort.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/multicorn_test_sort.sql -------------------------------------------------------------------------------- /test-2.7/sql/write_filesystem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/write_filesystem.sql -------------------------------------------------------------------------------- /test-2.7/sql/write_savepoints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/write_savepoints.sql -------------------------------------------------------------------------------- /test-2.7/sql/write_sqlalchemy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/write_sqlalchemy.sql -------------------------------------------------------------------------------- /test-2.7/sql/write_test.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/sql/write_test.sql -------------------------------------------------------------------------------- /test-2.7/windows: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-2.7/windows -------------------------------------------------------------------------------- /test-3.3/expected/import_sqlalchemy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/import_sqlalchemy.out -------------------------------------------------------------------------------- /test-3.3/expected/import_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/import_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_alchemy_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_alchemy_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_cache_invalidation.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_cache_invalidation.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_column_options_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_column_options_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_error_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_error_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_logger_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_logger_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_planner_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_planner_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_planner_test_1.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_planner_test_1.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_regression_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_regression_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_sequence_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_sequence_test.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_test_date.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_test_date.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_test_dict.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_test_dict.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_test_list.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_test_list.out -------------------------------------------------------------------------------- /test-3.3/expected/multicorn_test_sort.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/multicorn_test_sort.out -------------------------------------------------------------------------------- /test-3.3/expected/write_filesystem.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/write_filesystem.out -------------------------------------------------------------------------------- /test-3.3/expected/write_savepoints.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/write_savepoints.out -------------------------------------------------------------------------------- /test-3.3/expected/write_sqlalchemy.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/write_sqlalchemy.out -------------------------------------------------------------------------------- /test-3.3/expected/write_test.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/expected/write_test.out -------------------------------------------------------------------------------- /test-3.3/sql/disable_jit.include: -------------------------------------------------------------------------------- 1 | ../../test-common/disable_jit.include -------------------------------------------------------------------------------- /test-3.3/sql/import_sqlalchemy.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/import_sqlalchemy.sql -------------------------------------------------------------------------------- /test-3.3/sql/import_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/import_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_alchemy_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_alchemy_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_cache_invalidation.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_cache_invalidation.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_column_options_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_column_options_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_error_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_error_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_logger_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_logger_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_planner_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_planner_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_regression_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_regression_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_sequence_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_sequence_test.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_test_date.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_test_date.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_test_dict.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_test_dict.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_test_list.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_test_list.sql -------------------------------------------------------------------------------- /test-3.3/sql/multicorn_test_sort.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/multicorn_test_sort.sql -------------------------------------------------------------------------------- /test-3.3/sql/write_filesystem.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-3.3/sql/write_filesystem.sql -------------------------------------------------------------------------------- /test-3.3/sql/write_savepoints.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/write_savepoints.sql -------------------------------------------------------------------------------- /test-3.3/sql/write_sqlalchemy.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/write_sqlalchemy.sql -------------------------------------------------------------------------------- /test-3.3/sql/write_test.sql: -------------------------------------------------------------------------------- 1 | ../../test-2.7/sql/write_test.sql -------------------------------------------------------------------------------- /test-3.4: -------------------------------------------------------------------------------- 1 | test-3.3 -------------------------------------------------------------------------------- /test-3.5: -------------------------------------------------------------------------------- 1 | test-3.3 -------------------------------------------------------------------------------- /test-3.7: -------------------------------------------------------------------------------- 1 | test-3.3/ -------------------------------------------------------------------------------- /test-3.8: -------------------------------------------------------------------------------- 1 | test-3.3 -------------------------------------------------------------------------------- /test-common/disable_jit.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-common/disable_jit.include -------------------------------------------------------------------------------- /test-common/multicorn_testfilesystem.include: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Segfault-Inc/Multicorn/HEAD/test-common/multicorn_testfilesystem.include --------------------------------------------------------------------------------