CHANGES.rst
MANIFEST.in
Makefile
Makefile.release
Makefile.virtualenv
README.rst
requirements-test.txt
requirements.txt
setup.cfg
setup.py
version.txt
docs/Makefile
docs/api.rst
docs/changes.rst
docs/conf.py
docs/ddl.rst
docs/development.rst
docs/dml.rst
docs/enums.rst
docs/index.rst
docs/installation.rst
docs/introduction.rst
docs/keywords.rst
docs/lockdefs.rst
docs/lockoptions.rst
docs/node.rst
docs/nodes.rst
docs/parsenodes.rst
docs/parser.rst
docs/pg_class.rst
docs/pg_trigger.rst
docs/primnodes.rst
docs/printer.rst
docs/printers.rst
docs/sfuncs.rst
docs/usage.rst
libpg_query/LICENSE
libpg_query/Makefile
libpg_query/pg_query.h
libpg_query/src/pg_query.c
libpg_query/src/pg_query_fingerprint.c
libpg_query/src/pg_query_fingerprint.h
libpg_query/src/pg_query_fingerprint_conds.c
libpg_query/src/pg_query_fingerprint_defs.c
libpg_query/src/pg_query_internal.h
libpg_query/src/pg_query_json.c
libpg_query/src/pg_query_json.h
libpg_query/src/pg_query_json_conds.c
libpg_query/src/pg_query_json_defs.c
libpg_query/src/pg_query_json_helper.c
libpg_query/src/pg_query_json_plpgsql.c
libpg_query/src/pg_query_json_plpgsql.h
libpg_query/src/pg_query_normalize.c
libpg_query/src/pg_query_parse.c
libpg_query/src/pg_query_parse_plpgsql.c
pglast/__init__.py
pglast/__main__.py
pglast/error.py
pglast/keywords.py
pglast/node.py
pglast/parser.c
pglast/parser.pyx
pglast/printer.py
pglast.egg-info/PKG-INFO
pglast.egg-info/SOURCES.txt
pglast.egg-info/dependency_links.txt
pglast.egg-info/entry_points.txt
pglast.egg-info/requires.txt
pglast.egg-info/top_level.txt
pglast/enums/__init__.py
pglast/enums/lockdefs.py
pglast/enums/lockoptions.py
pglast/enums/nodes.py
pglast/enums/parsenodes.py
pglast/enums/pg_class.py
pglast/enums/pg_trigger.py
pglast/enums/primnodes.py
pglast/printers/__init__.py
pglast/printers/ddl.py
pglast/printers/dml.py
pglast/printers/sfuncs.py
tests/test_cli.py
tests/test_node.py
tests/test_parser.py
tests/test_printer.py
tests/test_printers_prettification.py
tests/test_printers_roundtrip.py
tests/test_printers_prettification/ddl/alter_default_privileges.sql
tests/test_printers_prettification/ddl/comment.sql
tests/test_printers_prettification/ddl/create_aggregate.sql
tests/test_printers_prettification/ddl/create_database.sql
tests/test_printers_prettification/ddl/create_domain.sql
tests/test_printers_prettification/ddl/create_event_trigger.sql
tests/test_printers_prettification/ddl/create_extension.sql
tests/test_printers_prettification/ddl/create_foreign_data_wrapper.sql
tests/test_printers_prettification/ddl/create_foreign_table.sql
tests/test_printers_prettification/ddl/create_function.sql
tests/test_printers_prettification/ddl/create_index.sql
tests/test_printers_prettification/ddl/create_language.sql
tests/test_printers_prettification/ddl/create_rule.sql
tests/test_printers_prettification/ddl/create_schema.sql
tests/test_printers_prettification/ddl/create_sequence.sql
tests/test_printers_prettification/ddl/create_table.sql
tests/test_printers_prettification/ddl/create_trigger.sql
tests/test_printers_prettification/ddl/create_type.sql
tests/test_printers_prettification/ddl/create_view.sql
tests/test_printers_prettification/ddl/grant.sql
tests/test_printers_prettification/ddl/notify.sql
tests/test_printers_prettification/dml/insert.sql
tests/test_printers_prettification/dml/select.sql
tests/test_printers_prettification/dml/truncate.sql
tests/test_printers_prettification/dml/update.sql
tests/test_printers_roundtrip/ddl/alter_database.sql
tests/test_printers_roundtrip/ddl/alter_default_privileges.sql
tests/test_printers_roundtrip/ddl/alter_function.sql
tests/test_printers_roundtrip/ddl/alter_owner.sql
tests/test_printers_roundtrip/ddl/alter_policy.sql
tests/test_printers_roundtrip/ddl/alter_rename.sql
tests/test_printers_roundtrip/ddl/alter_role.sql
tests/test_printers_roundtrip/ddl/alter_sequence.sql
tests/test_printers_roundtrip/ddl/alter_set_schema.sql
tests/test_printers_roundtrip/ddl/alter_table.sql
tests/test_printers_roundtrip/ddl/alter_type.sql
tests/test_printers_roundtrip/ddl/analyze.sql
tests/test_printers_roundtrip/ddl/cluster.sql
tests/test_printers_roundtrip/ddl/comment.sql
tests/test_printers_roundtrip/ddl/create_access_method.sql
tests/test_printers_roundtrip/ddl/create_aggregate.sql
tests/test_printers_roundtrip/ddl/create_cast.sql
tests/test_printers_roundtrip/ddl/create_collation.sql
tests/test_printers_roundtrip/ddl/create_conversion.sql
tests/test_printers_roundtrip/ddl/create_database.sql
tests/test_printers_roundtrip/ddl/create_fdw.sql
tests/test_printers_roundtrip/ddl/create_function.sql
tests/test_printers_roundtrip/ddl/create_index.sql
tests/test_printers_roundtrip/ddl/create_operator.sql
tests/test_printers_roundtrip/ddl/create_operator_class.sql
tests/test_printers_roundtrip/ddl/create_policy.sql
tests/test_printers_roundtrip/ddl/create_schema.sql
tests/test_printers_roundtrip/ddl/create_sequence.sql
tests/test_printers_roundtrip/ddl/create_table.sql
tests/test_printers_roundtrip/ddl/create_trigger.sql
tests/test_printers_roundtrip/ddl/create_type.sql
tests/test_printers_roundtrip/ddl/create_view.sql
tests/test_printers_roundtrip/ddl/discard.sql
tests/test_printers_roundtrip/ddl/do.sql
tests/test_printers_roundtrip/ddl/drop.sql
tests/test_printers_roundtrip/ddl/grant.sql
tests/test_printers_roundtrip/ddl/lock_table.sql
tests/test_printers_roundtrip/ddl/revoke.sql
tests/test_printers_roundtrip/ddl/vacuum.sql
tests/test_printers_roundtrip/dml/delete.sql
tests/test_printers_roundtrip/dml/insert.sql
tests/test_printers_roundtrip/dml/reset.sql
tests/test_printers_roundtrip/dml/select.sql
tests/test_printers_roundtrip/dml/set.sql
tests/test_printers_roundtrip/dml/transaction.sql
tests/test_printers_roundtrip/dml/update.sql
tools/extract_enums.py
tools/extract_keywords.py
tools/extract_printers_doc.py