sqlalchemy.dialects.postgresql.base PGIdentifierPreparer Example Code

PGIdentifierPreparer is a class within the sqlalchemy.dialects.postgresql.base module of the SQLAlchemy project.

PGCompiler and PGTypeCompiler are a couple of other callables within the sqlalchemy.dialects.postgresql.base package that also have code examples.

Example 1 from sqlalchemy-clickhouse

sqlalchemy-clickhouse is a SQLAlchemy Dialect for communicating with the open source ClickHouse database management system. ClickHouse is column-oriented and therefore better for some use cases and worse for others compared to a traditional relational database.

The code for this project is open sourced under the MIT license while ClickHouse is provided as open source under the Apache License 2.0.

sqlalchemy-clickhouse / base.py