Not yet released
- Fix limiting table list to the specified schema for DB2
+ - Default db_schema to the username for DB2
0.04999_04 Wed Mar 12, 2008
- Add is_auto_increment detecton for DB2
=cut
+sub _setup {
+ my $self = shift;
+
+ $self->next::method(@_);
+
+ my $dbh = $self->schema->storage->dbh;
+ $self->{db_schema} ||= $dbh->selectrow_array('VALUES(CURRENT_USER)', {});
+}
+
sub _table_uniq_info {
my ($self, $table) = @_;