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
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 <>;