﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
23425	Hide oracle specific GIS behaviour behind a feature flag	Josh Smeaton	nobody	"There are several places where oracle is singled out in GIS. These checks should probably be pushed down into feature flags.

Some examples:

{{{
# GeoAggregate.as_sql
    if connection.ops.oracle:
            self.extra['tolerance'] = self.tolerance
}}}

{{{
# GeoQuery.get_aggregation
    if isinstance(aggregate, gis_aggregates.GeoAggregate):
        if not getattr(aggregate, 'is_extent', False) or connection.ops.oracle:
            self.extra_select_fields[alias] = GeomField()
}}}"	Cleanup/optimization	closed	GIS	dev	Normal	invalid			Accepted	0	0	0	0	0	0
