Mariusz Felisiak
|
e17f40f4b5
|
Refs #24245 -- Added introspection for database defaults on Oracle.
|
2016-11-30 11:21:57 -05:00 |
Adam Chainz
|
95238a7de8
|
Fixed #27321 -- Added detection for table case name sensitivity on MySQL.
|
2016-11-28 13:29:21 -05:00 |
Mariusz Felisiak
|
b63d0c54b0
|
Fixed #24959 -- Fixed queries using negative timedeltas on MySQL and Oracle.
|
2016-11-23 09:10:47 -05:00 |
Ramin Farajpour Cami
|
967be82443
|
Fixed E305 flake8 warnings.
|
2016-11-14 12:30:46 -05:00 |
Mads Jensen
|
1446902be4
|
Fixed #25240 -- Added ExtractWeek and exposed it through the __week lookup.
Thanks to Mariusz Felisiak and Tim Graham for review.
|
2016-11-11 08:01:40 -05:00 |
Adam Chainz
|
c7dddc01d6
|
Fixed #27441 -- Improved SQL for 'DROP COLUMN' on MySQL
'CASCADE' is an undocumented no-op in MySQL, so to avoid confusion Django no longer outputs it.
|
2016-11-05 22:23:57 +01:00 |
Tim Graham
|
414ad25b09
|
Fixed #27327 -- Simplified time zone handling by requiring pytz.
|
2016-10-27 08:53:20 -04:00 |
Mariusz Felisiak
|
6e4e0f4ce4
|
Fixed #26541 -- Allowed MySQL transaction detection to work without table creation.
|
2016-10-01 10:01:44 -04:00 |
Tim Graham
|
9819676676
|
Updated links to the current version of MySQL docs.
|
2016-09-30 09:14:17 -04:00 |
Adam Chainz
|
85f2bba7eb
|
Removed DatabaseError and IntegrityError declarations from database backends.
Unused since 11ee9746a0 .
|
2016-09-26 18:31:41 -04:00 |
Claude Paroz
|
d389125606
|
Fixed #27098 -- Deprecated DatabaseIntrospection.get_indexes
Thanks Akshesh <aksheshdoshi@gmail.com> for help with the PostgreSQL query.
Thanks Tim Graham for the review.
|
2016-09-12 09:26:33 +02:00 |
Chris Jerdonek
|
7ca3b391b6
|
Fixed #27170 -- Added DatabaseWrapper class attributes to ease subclassing.
|
2016-09-08 16:33:36 -04:00 |
Markus Gerards
|
2b64ff68cc
|
Fixed #27180 -- Fixed a crash in MySQL checks where SELECT @@sql_mode doesn't return a result.
|
2016-09-07 11:15:41 -04:00 |
Akshesh
|
dbccf163b6
|
Fixed #27097 -- Added index type introspection to built-in db backends.
|
2016-09-02 21:14:12 -04:00 |
Matthew Wilkes
|
4f138fe5a4
|
Fixed #22288 -- Fixed F() expressions with the __range lookup.
|
2016-08-19 13:40:56 -04:00 |
Akshesh
|
f842d1011c
|
Refs #20888 -- Added index order introspection.
|
2016-08-12 11:51:09 -04:00 |
Tim Graham
|
d95c669c29
|
Fixed #26991 -- Fixed a crash in MySQL where SQL_AUTO_IS_NULL doesn't return a result.
|
2016-08-02 10:52:31 -04:00 |
Adam Chainz
|
4b1c9708d6
|
Fixed #26966 -- Made MySQL backend skip defaults for JSON columns
Thanks mcgeeco for reporting, and claudep and timgraham for review.
|
2016-08-01 13:51:25 -04:00 |
Anderson Resende
|
0d1218896f
|
Fixed #26950 -- Removed obsolete DatabaseOperations SQL methods.
Unused as of 2b039d966f .
|
2016-07-27 07:34:44 -04:00 |
Marc-Aurèle Brothier
|
f8bfa80680
|
Fixed #26868 -- Changed MySQL version detection to use a query.
Workaround a bug with MariaDB and MySQL native client not stripping the
`5.5.5-` prefix.
|
2016-07-15 10:05:03 -04:00 |
Simon Charette
|
8a4f017f45
|
Fixed #26348 -- Added TruncTime and exposed it through the __time lookup.
Thanks Tim for the review.
|
2016-07-08 12:35:34 -04:00 |
Simon Charette
|
082c52dbed
|
Refs #25774, #26348 -- Allowed Trunc functions to operate with time fields.
Thanks Josh for the amazing testing setup and Tim for the review.
|
2016-07-08 12:35:34 -04:00 |
Adam Dobrawy
|
92d323ccb5
|
Added package names to 'Error loading MySQLdb module' error.
|
2016-07-01 13:12:27 -04:00 |
Aaron Elliot Ross
|
6bf7964023
|
Fixed #26171 -- Made MySQL create an index on ForeignKeys with db_contraint=False.
Refactored "Prevented unneeded index creation on MySQL-InnoDB" (2ceb10f )
to avoid setting db_index=False.
|
2016-06-28 08:22:20 -04:00 |
Étienne BERSAC
|
03f6d272ab
|
Fixed #26751 -- Made dbshell exit with the shell's error code.
|
2016-06-27 12:20:40 -04:00 |
Markus Holtermann
|
deeffde84a
|
Fixed #26593 -- Leveraged deferrable_sql() in SchemaEditor
|
2016-05-07 01:21:00 +02:00 |
Claude Paroz
|
f9a2a7db17
|
Fixed #26351 -- Added MySQL check to warn about strict mode option
Thanks Adam Chainz for the initial implementation in django-mysql.
Thanks Adam Chainz, Tim Graham, and Shai Berger for the reviews.
|
2016-04-08 20:34:16 +02:00 |
Tim Graham
|
df8d8d4292
|
Fixed E128 flake8 warnings in django/.
|
2016-04-08 09:51:06 -04:00 |
Tim Graham
|
2cd2d18851
|
Fixed W503 flake8 warnings.
|
2016-04-04 17:14:26 -04:00 |
Claude Paroz
|
204e00c0c5
|
Fixed #26140 -- Suppressed MySQL warning when inserting binary content
Thanks Tim Graham for the review.
|
2016-03-14 18:08:13 +01:00 |
Marc Tamlyn
|
8ddc79a799
|
Fixed #26285 -- Deprecated the MySQL-specific __search lookup.
|
2016-03-02 14:41:56 -05:00 |
Simon Charette
|
766afc22a1
|
Fixed #24793 -- Unified temporal difference support.
|
2016-02-26 12:25:12 -05:00 |
zshimanchik
|
65aa94200b
|
Fixed #24653 -- Fixed MySQL database introspection when using read_default_file.
|
2016-02-26 12:02:13 -05:00 |
Tim Graham
|
004ba0f99e
|
Removed unneeded hint=None/obj=None in system check messages.
|
2016-02-12 13:01:25 -05:00 |
userimack
|
60586dd737
|
Fixed #26125 -- Fixed E731 flake warnings.
|
2016-01-25 14:23:43 -05:00 |
Tim Graham
|
4dc74371e3
|
Removed unused attributes of MySQL SchemaEditor.
|
2016-01-22 12:46:27 -05:00 |
Alexander Sosnovskiy
|
2a7ce34600
|
Fixed #14286 -- Added models.BigAutoField.
|
2015-12-25 20:01:31 -05:00 |
Stewart Park
|
b7fdd60d85
|
Fixed #24675 -- Skipped SQL_AUTO_IS_NULL query on MySQL if not needed.
|
2015-12-15 10:30:57 -05:00 |
George Marshall
|
710e11d076
|
Fixed #25767 -- Fixed data truncation possibility with Positive(Small)IntegerField on MySQL.
|
2015-11-24 11:09:15 -05:00 |
Tim Graham
|
abcdb237bb
|
Refs #25196 -- Fixed incorrect argument order in test database creation.
|
2015-11-13 11:29:35 -05:00 |
Mariusz Felisiak
|
0f6d51e6a0
|
Fixed #25470 -- Avoided unnecessary, expensive DATETIME typecast on MySQL.
|
2015-10-21 19:24:19 -04:00 |
Ville Skyttä
|
afe777639c
|
Fixed #25196 -- Normalized database representations in test database messages.
Left over Oracle mostly as-is since it's more complicated.
|
2015-09-25 10:21:55 -04:00 |
Alex Hill
|
134ca4d438
|
Fixed #24509 -- Added Expression support to SQLInsertCompiler
|
2015-09-22 23:35:24 +10:00 |
Ville Skyttä
|
4d933ad418
|
Fixed #25393 -- Fixed MySQL crash when adding text/blob field with unhashable default.
|
2015-09-14 12:25:08 -04:00 |
Aymeric Augustin
|
33c7c2a557
|
Enabled parallel testing by default in runtests.py.
|
2015-09-10 13:34:05 +02:00 |
Aymeric Augustin
|
0586c061f0
|
Cloned databases for running tests in parallel.
|
2015-09-09 23:01:15 +02:00 |
Tim Graham
|
aaacaeb096
|
Renamed RemovedInDjangoXYWarnings for new roadmap.
Forwardport of ae1d663b79
from stable/1.8.x plus more.
|
2015-06-24 16:08:20 -04:00 |
Adam Brenecki
|
65296b3be3
|
Fixed #24972 -- Fixed removing unique_together indexes on MySQL.
|
2015-06-15 17:28:13 -04:00 |
Jon Dufresne
|
44f3ee7716
|
Fixed #9596 -- Added date transform for DateTimeField.
|
2015-06-02 08:49:10 -04:00 |
Adam Chainz
|
e60cce4e40
|
Fixed #24846 -- Added support to MySQL SchemaEditor for all blob/text data types
|
2015-05-30 20:37:57 -04:00 |