Stop filling in placeholders in `format-sql`
Arthur Axel 'fREW' Schmidt [Fri, 20 Apr 2012 18:24:11 +0000 (13:24 -0500)]
Changes
script/format-sql

diff --git a/Changes b/Changes
index 674d881..f42564f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,7 @@
 Revision history for SQL::Abstract
 
+    - Stop filling in placeholders in `format-sql` since it does not support
+      passing values for them anyway
     - Fix parsing of NOT EXISTS
     - Fix over-eager parenthesis unrolling
     - Fix deep recursion warnings while parsing obnoxiously long sql statements
index 6254e83..06bd65e 100755 (executable)
@@ -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 <>;