1234567891011121314151617181920212223 |
- from psqlextra.compiler import (
- SQLAggregateCompiler,
- SQLCompiler,
- SQLDeleteCompiler,
- SQLInsertCompiler,
- SQLUpdateCompiler,
- )
- from . import base_impl
- class PostgresOperations(base_impl.operations()): # type: ignore[misc]
- """Simple operations specific to PostgreSQL."""
- compiler_module = "psqlextra.compiler"
- compiler_classes = [
- SQLCompiler,
- SQLDeleteCompiler,
- SQLAggregateCompiler,
- SQLUpdateCompiler,
- SQLInsertCompiler,
- ]
|