| Age | Commit message (Collapse) | Author |
|
|
|
The layer of indirection is unchanged and undocumented
since its introduction in ff60c5f9de3e8690d1e86f3e9e3f7248a15397c8.
|
|
SpatiaLite loading.
|
|
|
|
Removed setting SRID in GEOSGeometry.clone() which was only required
in GEOS 3.3.0.
|
|
This wasn't possible when settings were accessed during Field initialization
time as our test suite setup script was triggering imports of expressions
before settings were configured.
|
|
Deferring accesses to settings allows database fields to be initialized before
settings are loaded.
|
|
|
|
than once.
Reverted test for refs #27603 in favor of using FuncTestMixin.
|
|
|
|
numbers.
Thanks Greg Larmore for report and initial patch.
|
|
|
|
|
|
|
|
Thanks Adam Johnson and Tim Graham for the reviews.
|
|
|
|
|
|
|
|
|
|
Thanks Brent Hand for the initial patch.
|
|
|
|
Unused since 2bab9d6d9ea095c4bcaeede2df576708afd46291.
|
|
|
|
|
|
This reverts commit 550cb3a365dee4edfdd1563224d5304de2a57fda
because try/except performs better.
|
|
|
|
As of ccbba98131ace3beb43790c65e8f4eee94e9631c, both examples don't use
a join.
|
|
|
|
|
|
Moved boilerplate from docs to a method.
|
|
functools.partial()/partialmethod().
|
|
|
|
Unused since 3adc5f1ee6618a615db07d4a868b366a15c39f82.
|
|
deque() isn't needed since algorithm doesn't require FIFO.
|
|
|
|
QuerySet.earliest()/latest().
|
|
|
|
|
|
|
|
|
|
|
|
empty_value when strip is enabled.
|
|
|
|
technical 500 debug page.
This is a security fix.
|
|
|
|
|
|
|
|
|
|
better readability.
|
|
NULL cannot be compare with standard operators on Oracle, it works only
with IS NULL and IS NOT NULL operators. Therefore 'OR ... IS NULL'
condition in NullBooleanField's check constraint is redundant.
Nullability is checked in a separate constraint.
|