Tim Bunce wrote:

   http://www.data-plan.com/public/DBD-Oracle-1.17-RC2.tar.gz

On Oracle8:

 # failed test 34 at line 120. ORA-00904: invalid column name
    (DBD ERROR: error possibly near <*> indicator at char 15 in '
       select <*>to_dsinterval(:p1) from dual
       ')
 not ok 34

Patch attached.


Steffen
Index: t/20select.t
===================================================================
--- t/20select.t        (revision 2390)
+++ t/20select.t        (working copy)
@@ -111,7 +111,7 @@
 } # end of run_select_tests
 
   my $ora_server_version = $dbh->func("ora_server_version");
-  if ($ora_server_version < 10) {
+  if ($ora_server_version->[0] < 10) {
     ok(0, 1, 1); # skip
   } else {
     my $data = $dbh->selectrow_array(q!

Reply via email to