Opened 12 years ago

Closed 11 years ago

Last modified 11 years ago

#19112 closed Cleanup/optimization (fixed)

regressiontests.queries.tests.ConditionalTests.test_ticket14244 breaks mssql due to arbitrary maximum parameters

Reported by: Michael Manfre Owned by: Michael Manfre
Component: Database layer (models, ORM) Version: dev
Severity: Normal Keywords:
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

supports_1000_query_parameters is a feature that was added (#14244) for the sake of sqlite3 to prevent running the test regressiontests.queries.tests.ConditionalTests.test_ticket14244. This test asserts that a progressively larger number of parameters (1000-2500)can be used.

Another purpose of the test appears to be a way of checking the behavior of max_in_list_size(), which was added with ticket #14244 to fix Oracle's limitation of at most 1000 values in an "IN" list.

Django-mssql, due to a driver limitation, supports a maximum of 2100 parameters for the entire query, not just the IN clause. I'd like to propose lowering the final assert of 2500 to 2001 to still test a third IN clause (for Oracle) while lowering the limit below what the mssql driver can handle.

Change History (4)

comment:2 by Anssi Kääriäinen, 12 years ago

Triage Stage: UnreviewedAccepted

Accepting in the sense that something needs to be done here...

comment:3 by Anssi Kääriäinen <akaariai@…>, 11 years ago

Resolution: fixed
Status: newclosed

In 604d8763dc2c901a3557e15880895d88af5c4127:

Fixed #19112 -- Reduced the amount of query params in a test

comment:4 by Anssi Kääriäinen <akaariai@…>, 11 years ago

In 7b5ca126ee37cd386d9900b2ef29901debb28e9e:

[1.5.x] Fixed #19112 -- Reduced the amount of query params in a test

Backpatch of 604d8763dc2c901a3557e15880895d88af5c4127.

Note: See TracTickets for help on using tickets.
Back to Top