Django

Code

root/django/trunk/django/db/backends/postgresql_psycopg2


Mode:

Legend:

Added
Modified
Copied or renamed
Rev Chgset Date Author Log Message
(edit) @8648 [8648] 08/28/08 01:49:00 mtredinnick Fixed #8592 -- Fixed a bug in the way savepoint usage was disabled …
(edit) @8536 [8536] 08/25/08 07:56:06 jacob Fixed #3575: use UPPER() instead ILIKE for postgres case-insensitive …
(edit) @8532 [8532] 08/24/08 23:13:27 mtredinnick Fixed #7464 -- Fixed the psycopg2 backend to handle SafeString? values …
(edit) @8317 [8317] 08/12/08 01:31:29 mtredinnick Do not use savepoints with PostgreSQL prior to 8.0.
(edit) @8314 [8314] 08/12/08 00:34:56 mtredinnick Added savepoint support to the transaction code. This is a no-op for most …
(edit) @8301 [8301] 08/11/08 09:16:09 russellm Removed some empty modules that are no longer required after [8296].
(edit) @8296 [8296] 08/11/08 07:11:25 russellm Fixed #5461 -- Refactored the database backend code to use classes for the …
(edit) @6816 [6816] 12/01/07 16:26:24 mtredinnick Fixed #5996 -- Add a pyscopg2 convertor for SafeUnicode? -> unicode. …
(edit) @6601 [6601] 10/23/07 14:00:31 adrian Added a BaseDatabaseOperations?.last_executed_query() hook, which allows a …
(edit) @6171 [6171] 09/14/07 01:21:25 mtredinnick Backed out [6165]. It breaks things for people using psycopg2 because it …
(edit) @6165 [6165] 09/14/07 00:33:39 gwilson Refs #4299 -- Removed some code duplication in the postgresql …
(edit) @6012 [6012] 08/25/07 14:24:47 adrian Changed postgresql and postgresql_psycopg2 backends NOT to do a SELECT …
(edit) @5983 [5983] 08/19/07 22:32:06 adrian Made various negligible formatting cleanups to the database backends
(edit) @5982 [5982] 08/19/07 22:26:55 adrian Refactored OPERATOR_MAPPING so that it exists as …
(edit) @5974 [5974] 08/19/07 21:20:33 adrian Implemented BaseDatabaseFeatures? and changed all code to access it -- …
(edit) @5973 [5973] 08/19/07 20:30:11 adrian Removed unneeded import from postgresql_psycopg2/base.py
(edit) @5972 [5972] 08/19/07 20:26:46 adrian Moved postgresql backend DatabaseOperations? class into a new module, …
(edit) @5970 [5970] 08/19/07 20:14:53 adrian Removed backend.dictfetchall(), as it wasn't being used anywhere
(edit) @5969 [5969] 08/19/07 20:14:03 adrian Removed backend.dictfetchmany(), as it wasn't being used anywhere
(edit) @5968 [5968] 08/19/07 20:13:12 adrian Removed backend.dictfetchone(), as it wasn't being used anywhere
(edit) @5967 [5967] 08/19/07 20:03:33 adrian Refactored quote_name() to DatabaseOperations?.quote_name(). Refs #5106
(edit) @5965 [5965] 08/19/07 19:24:03 adrian Refactored get_start_transaction_sql() to …
(edit) @5964 [5964] 08/19/07 19:21:10 adrian Refactored get_sql_sequence_reset() to …
(edit) @5963 [5963] 08/19/07 19:15:53 adrian Refactored get_sql_flush() to DatabaseOperations?.sql_flush(). Refs #5106
(edit) @5962 [5962] 08/19/07 19:04:20 adrian Refactored get_random_function_sql() to …
(edit) @5961 [5961] 08/19/07 18:59:06 adrian Refactored get_pk_default_value() to …
(edit) @5960 [5960] 08/19/07 18:53:39 adrian Refactored get_max_name_length() to DatabaseOperations?.max_name_length(). …
(edit) @5959 [5959] 08/19/07 18:24:59 adrian Refactored get_limit_offset_sql() to …
(edit) @5958 [5958] 08/19/07 18:18:43 adrian Refactored get_last_insert_id() to DatabaseOperations?.last_insert_id(). …
(edit) @5957 [5957] 08/19/07 18:13:06 adrian Refactored get_fulltext_search_sql() to …
(edit) @5956 [5956] 08/19/07 18:07:34 adrian Refactored get_drop_foreignkey_sql() to …
(edit) @5955 [5955] 08/19/07 18:03:38 adrian Refactored get_deferrable_sql() to DatabaseOperations?.deferrable_sql(). …
(edit) @5953 [5953] 08/19/07 17:55:05 adrian Refactored get_datetime_cast_sql() to …
(edit) @5952 [5952] 08/19/07 17:47:43 adrian Refactored get_date_trunc_sql() to DatabaseOperations?.date_trunc_sql(). …
(edit) @5951 [5951] 08/19/07 17:40:06 adrian Refactored get_date_extract_sql() to …
(edit) @5950 [5950] 08/19/07 17:29:57 adrian Began implementing BaseDatabaseOperations? class for every database …
(edit) @5949 [5949] 08/19/07 16:30:57 adrian Refactored all database backends to inherit from a common base class to …
(edit) @5690 [5690] 07/13/07 15:36:01 gwilson Refs #2591 -- Removed int conversion and try/except since the value in the …
(edit) @5679 [5679] 07/13/07 03:52:07 mtredinnick Fixed #2591 -- Fixed a problem with inspectdb with psycopg2 (only). Patch …
(edit) @5609 [5609] 07/04/07 07:11:04 mtredinnick Merged Unicode branch into trunk (r4952:5608). This should be …
(edit) @5555 [5555] 06/27/07 13:58:10 jacob Fixed #1465: added support for regex lookups. Thanks, Tom Tobin.
(edit) @5528 [5528] 06/24/07 22:08:00 mtredinnick Fixed #4678 -- Fixed table name matching during syncdb for pyscopg2 …
(edit) @5519 [5519] 06/23/07 09:16:00 mtredinnick Merged boulder-oracle-sprint branch (r3965:5512) back into trunk. …
(edit) @5455 [5455] 06/09/07 22:31:26 mtredinnick Fixed #4432 -- Fixed PostgreSQL sequence resetting in the case when a …
(edit) @5302 [5302] 05/20/07 20:29:58 mtredinnick Fixed #2365, #3324 -- Renamed FloatField? to DecimalField? and changed the …
(edit) @5204 [5204] 05/12/07 10:21:33 russellm Fixed #4231 -- Added quoting for sequence names on sequence reset for …
(edit) @5076 [5076] 04/25/07 05:18:56 mtredinnick Fixed #3450 -- Exposed IntegrityError in a backend-neutral fashion. This …
(edit) @5017 [5017] 04/17/07 06:11:26 russellm Fixed #4057 -- Fixed problem with quoting of sequence names on Postgres …
(edit) @4937 [4937] 04/05/07 21:25:58 russellm Fixed #3790 -- Fixed a problem with sequence resetting during fixture …
(edit) @4691 [4691] 03/09/07 01:55:40 mtredinnick Fixed #3024 -- Fixed database commit() and rollback() behaviour so it …
(edit) @4662 [4662] 03/01/07 23:15:27 mtredinnick Fixed #3627 -- Made [4659] compatible with Python 2.3. Thanks, Gary …
(edit) @4660 [4660] 03/01/07 11:54:35 jacob Changed the postgres version getting code to use cursor.fetchone() instead …
(edit) @4659 [4659] 03/01/07 07:11:08 russellm Fixes #2333 -- Added test fixtures framework.
(edit) @4610 [4610] 02/26/07 11:33:27 jacob Fixed #3390: the serializer can now contain forward references. Thanks, …
(edit) @4573 [4573] 02/25/07 10:18:46 jacob Fixed #3459: Django no longer runs SET TIME ZONE for every query when …
(edit) @4265 [4265] 12/30/06 00:25:49 adrian Fixed #3191 -- Set 'svn:eol-style native' on the files that didn't have …
(edit) @4108 [4108] 11/26/06 17:59:07 adrian Fixed #3028 -- Added 'svn:ignore' for *.pyc files for some packages that …
(edit) @4048 [4048] 11/06/06 23:17:38 jacob Fixed #2866: Added DATABASE_OPTIONS setting which gets passed as extra …
(edit) @3727 [3727] 09/05/06 11:12:36 jacob Made psycopg2 backend actually support dictfetch* methods.
(edit) @3675 [3675] 08/28/06 15:00:47 jacob Made psycopg2 backend behave the same as the other backends when it comes …
(edit) @3565 [3565] 08/12/06 00:15:25 adrian Fixed #2514 -- Improved psycopg2 backend to save/load Unicode strings …
(edit) @3411 [3411] 07/21/06 12:11:13 jacob Fixed a bunch of spurious imports, typos, and other small errors turned up …
(edit) @3115 [3115] 06/08/06 10:14:06 mtredinnick Fixed #2108 -- allow saving of empty models, rather than just dropping …
(edit) @3073 [3073] 06/03/06 18:28:24 adrian Fixed #593 -- Added 'search' DB-API lookup type, which does full-text …
(edit) @3047 [3047] 06/01/06 11:27:41 adrian Fixed #2061 -- Fixed PostgreSQL index introspection in tables that have …
(edit) @2993 [2993] 05/26/06 13:58:46 adrian Fixed #1673 -- Every database backend now raises ImproperlyConfigured? if …
(edit) @2934 [2934] 05/17/06 22:36:58 adrian Fixed #1904 -- Got postgresql_psycopg2 backend working. Thanks for the …
(add) @2928 [2928] 05/16/06 18:27:07 adrian Added postgresql_psycopg2 backend, which is untested, just for a starting …
Note: See TracRevisionLog for help on using the revision log.