From 13061bf20bc467c5655c2dfa280dc226a00effcd Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Mon, 20 Aug 2007 00:24:03 +0000 Subject: 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 --- django/db/backends/postgresql/base.py | 3 --- 1 file changed, 3 deletions(-) (limited to 'django/db/backends/postgresql') 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. -- cgit v1.3