(self)
| 1584 | |
| 1585 | @property |
| 1586 | def infinity_floats(self): |
| 1587 | return fails_on_everything_except( |
| 1588 | "sqlite", |
| 1589 | "postgresql+psycopg2", |
| 1590 | "postgresql+asyncpg", |
| 1591 | "postgresql+psycopg", |
| 1592 | ) + skip_if( |
| 1593 | "postgresql+pg8000", "seems to work on pg14 only, not earlier?" |
| 1594 | ) |
| 1595 | |
| 1596 | @property |
| 1597 | def float_or_double_precision_behaves_generically(self): |
nothing calls this directly
no test coverage detected