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
This commit is contained in:
Adrian Holovaty 2007-08-20 00:24:03 +00:00
parent 147e99a08a
commit 13061bf20b
10 changed files with 12 additions and 25 deletions

View file

@ -188,9 +188,6 @@ dictfetchone = util.dictfetchone
dictfetchmany = util.dictfetchmany
dictfetchall = util.dictfetchall
def get_start_transaction_sql():
return "BEGIN;"
OPERATOR_MAPPING = {
'exact': '= %s',
'iexact': 'LIKE %s',