(travis) Port all travis changes since 0.08270
[dbsrgits/DBIx-Class.git] / t / storage / quote_names.t
index 6492f25..1880e0e 100644 (file)
@@ -128,7 +128,11 @@ for my $db (sort {
     "$db name_sep with quote_names => 1 is $name_sep_text";
 
   # if something was produced - it better be quoted
-  if ( my $ddl = try { $schema->deployment_statements } ) {
+  if (
+    ! grep { $db eq $_ } qw( SYBASE DB2 )
+      and
+    my $ddl = try { $schema->deployment_statements }
+  ) {
 
     my $quoted_artist = $schema->storage->sql_maker->_quote('artist');