projects
/
dbsrgits/SQL-Translator.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
46bf565
)
Start transactions in a portable manner
Ash Berlin [Wed, 16 Jan 2008 22:44:29 +0000 (22:44 +0000)]
lib/SQL/Translator/Diff.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/SQL/Translator/Diff.pm
b/lib/SQL/Translator/Diff.pm
index
7ee9fc1
..
3f71bfa
100644
(file)
--- a/
lib/SQL/Translator/Diff.pm
+++ b/
lib/SQL/Translator/Diff.pm
@@
-244,7
+244,7
@@
sub produce_diff_sql {
}
if (@diffs) {
- unshift @diffs, "BEGIN TRANSACTION;\n";
+ unshift @diffs, "BEGIN;\n";
push @diffs, "\nCOMMIT;\n";
} else {
@diffs = ("-- No differences found\n\n");