X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=script%2Fformat-sql;h=06bd65e815b5bb3a30e9e4faabaac3cf19aff851;hb=c54740ba9963ea408e5b8d0dd8e8cb8fc4886dc6;hp=6254e8360c3e4518d3d2a3e6e8a308f7b66e7373;hpb=ffce8d5f88fbf0542c9a2667e1df52ef0408431d;p=dbsrgits%2FSQL-Abstract.git diff --git a/script/format-sql b/script/format-sql index 6254e83..06bd65e 100755 --- a/script/format-sql +++ b/script/format-sql @@ -11,6 +11,6 @@ my ($opt, $usage) = describe_options( print($usage->text), exit if $opt->help; -my $sqlat = SQL::Abstract::Tree->new({ profile => $opt->profile }); +my $sqlat = SQL::Abstract::Tree->new({ profile => $opt->profile, fill_in_placeholders => 0 }); print $sqlat->format($_) . "\n" while <>;