diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2007-08-20 00:24:03 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2007-08-20 00:24:03 +0000 |
| commit | 13061bf20bc467c5655c2dfa280dc226a00effcd (patch) | |
| tree | f0829fee6a53bb3fa0e394cca6017b285f48bcf4 /django/db/backends/postgresql | |
| parent | 147e99a08a4c5983f8b031917ace99e5a4827033 (diff) | |
Refactored get_start_transaction_sql() to DatabaseOperations.start_transaction_sql(). Refs #5106
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5965 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/db/backends/postgresql')
| -rw-r--r-- | django/db/backends/postgresql/base.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/django/db/backends/postgresql/base.py b/django/db/backends/postgresql/base.py index 1ff5003129..9ce5890728 100644 --- a/django/db/backends/postgresql/base.py +++ b/django/db/backends/postgresql/base.py @@ -211,9 +211,6 @@ def dictfetchall(cursor): "Returns all rows from a cursor as a dict" return cursor.dictfetchall() -def get_start_transaction_sql(): - return "BEGIN;" - def typecast_string(s): """ Cast all returned strings to unicode strings. |
