* made PostgreSQL producer consistent with other producers in terms of
quoting and allowing functions in constraints and indices
* Add distinction of autoinc and regular primary keys to the GraphViz producer
+* Fix odd invocation of Test::More::pass() in t/36-filters.t (RT#64728)
# ----------------------------------------------------------
# 0.11007 2010-11-30
package SQL::Translator::Filter::Ok;
use strict;
-sub filter { Test::More::pass(@_) }
+sub filter { Test::More::pass(
+ 'Filter called with args: ' . join ', ', @_
+) }
# Hack to allow sqlt to see our module as it wasn't loaded from a .pm
$INC{'SQL/Translator/Filter/Ok.pm'} = 'lib/SQL/Translator/Filter/Ok.pm';