DB2 compatibility fix, update test to add new artist column (ick)
Jess Robinson [Fri, 30 Jan 2009 14:27:38 +0000 (14:27 +0000)]
remove code that calls now removed sub _RowNumberOver

lib/DBIx/Class/Storage/DBI.pm
t/745db2.t

index 91e44e3..b9cf838 100644 (file)
@@ -50,18 +50,10 @@ sub new {
   $self;
 }
 
+
 # While we're at it, this should make LIMIT queries more efficient,
 #  without digging into things too deeply
 use Scalar::Util 'blessed';
-sub _find_syntax {
-  my ($self, $syntax) = @_;
-  my $dbhname = blessed($syntax) ?  $syntax->{Driver}{Name} : $syntax;
-  if(ref($self) && $dbhname && $dbhname eq 'DB2') {
-    return 'RowNumberOver';
-  }
-
-  $self->{_cached_syntax} ||= $self->SUPER::_find_syntax($syntax);
-}
 
 sub select {
   my ($self, $table, $fields, $where, $order, @rest) = @_;
index 82475b1..48f975c 100644 (file)
@@ -20,7 +20,7 @@ my $dbh = $schema->storage->dbh;
 
 eval { $dbh->do("DROP TABLE artist") };
 
-$dbh->do("CREATE TABLE artist (artistid INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), name VARCHAR(255), charfield CHAR(10));");
+$dbh->do("CREATE TABLE artist (artistid INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 1, INCREMENT BY 1), name VARCHAR(255), charfield CHAR(10), rank INTEGER DEFAULT 13);");
 
 # This is in core, just testing that it still loads ok
 $schema->class('Artist')->load_components('PK::Auto');