CC: | sqlt-graph issue: arg processing |
When running sqlt-graph, I get this message:
Undefined argument in option spec
Undefined argument in option spec
Undefined argument in option spec
The following change fixes it.
From:
'show-datatypes' => $show_datatypes,
'show-sizes' => $show_sizes,
'show-constraints' => $show_constraints,
to:
'show-datatypes' => \$show_datatypes,
'show-sizes' => \$show_sizes,
'show-constraints' => \$show_constraints,