Revision history for Perl extension DBIx::Class::Schema::Loader
+ - Avoid upcoming DBIC warning on implicit SELECT * invocation
+ (RT#118178)
+
0.07046 2016-09-05
- Introspect view definitions for PostgreSQL, MySQL, Oracle,
Firebird, and InterBase.
my ($self, $table, $fields, $where) = @_;
my $sth = $self->dbh->prepare($self->schema->storage->sql_maker
- ->select(\$table->sql_name, $fields, $where));
+ ->select(\$table->sql_name, $fields || \'*', $where));
return $sth;
}