(self, compiler, connection, **extra_context)
| 553 | return super().as_sql(compiler, connection, function=function, **extra_context) |
| 554 | |
| 555 | def as_sqlite(self, compiler, connection, **extra_context): |
| 556 | if self.geo_field.geodetic(connection): |
| 557 | raise NotSupportedError("Perimeter cannot use a non-projected field.") |
| 558 | return super().as_sql(compiler, connection, **extra_context) |
| 559 | |
| 560 | |
| 561 | class PointOnSurface(OracleToleranceMixin, GeomOutputGeoFunc): |
nothing calls this directly
no test coverage detected