Target backends that support nulls ordering.
(self)
| 1194 | |
| 1195 | @property |
| 1196 | def nullsordering(self): |
| 1197 | """Target backends that support nulls ordering.""" |
| 1198 | return fails_on_everything_except( |
| 1199 | "postgresql", "oracle", "sqlite >= 3.30.0" |
| 1200 | ) |
| 1201 | |
| 1202 | @property |
| 1203 | def reflects_pk_names(self): |
nothing calls this directly
no test coverage detected