projects
/
dbsrgits/DBIx-Class-DeploymentHandler.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
93dfd21
)
Add semicolon to generated SQL for "correctness"
Arthur Axel 'fREW' Schmidt [Thu, 10 Jan 2013 02:27:34 +0000 (20:27 -0600)]
Changes
patch
|
blob
|
blame
|
history
lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm
patch
|
blob
|
blame
|
history
diff --git
a/Changes
b/Changes
index
5858095
..
e9e285c
100644
(file)
--- a/
Changes
+++ b/
Changes
@@
-1,6
+1,7
@@
Revision history for {{$dist->name}}
{{$NEXT}}
+ - Add semicolon to generated SQL for "correctness"
0.002203 2012-11-17 16:38:24 CST6CDT
- Put MetaYAML back in dist
diff --git
a/lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm
b/lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm
index
50ff451
..
9f9b971
100644
(file)
--- a/
lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm
+++ b/
lib/DBIx/Class/DeploymentHandler/DeployMethod/SQL/Translator.pm
@@
-525,7
+525,7
@@
sub _prepare_install {
}
}
open my $file, q(>), $filename;
- print {$file} join ";\n", @$sql;
+ print {$file} join ";\n", @$sql, '';
close $file;
}
}