If you do NOT WANT quoting, set quote_identifiers to a false value to
protect yourself from changes in a future release.
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
+* script/sqlt-graph now accepts a --trace option
* Fixes to SQLite foreign keys production (patch from Johan Viklund)
closes RT#16412, RT#44769
* ON DELETE/UPDATE actions for SQLite (patch from Lukas Thiemeier)
--skip-tables Comma-separated list of table names to exclude
--skip-tables-like Comma-separated list of regexen to exclude tables
--debug Print debugging information
+ --trace Print parser trace info
=head1 DESCRIPTION
$natural_join, $join_pk_only, $skip_fields, $show_datatypes,
$show_sizes, $show_constraints, $debug, $help, $height, $width,
$no_fields, $fontsize, $fontname, $skip_tables, $skip_tables_like,
- $cluster
+ $cluster, $trace
);
# multi-valued options:
'show-sizes' => \$show_sizes,
'show-constraints' => \$show_constraints,
'debug' => \$debug,
+ 'trace' => \$trace,
'h|help' => \$help,
) or die pod2usage;
my @files = @ARGV; # the create script(s) for the original db
from => $db_driver,
to => 'GraphViz',
debug => $debug || 0,
+ trace => $trace || 0,
producer_args => {
out_file => $out_file,
layout => $layout,