Target driver reflects the name of primary key constraints.
(self)
| 1201 | |
| 1202 | @property |
| 1203 | def reflects_pk_names(self): |
| 1204 | """Target driver reflects the name of primary key constraints.""" |
| 1205 | |
| 1206 | return fails_on_everything_except( |
| 1207 | "postgresql", "oracle", "mssql", "sqlite" |
| 1208 | ) |
| 1209 | |
| 1210 | @property |
| 1211 | def nested_aggregates(self): |
nothing calls this directly
no test coverage detected