Subject: | 34pres_lobs.t: Data Interface for Persistent LOBs new in Oracle 9 |
Data Interface for Persistent LOBs is new in Oracle 9, so I'd skip these
tests for older versions.
Patch attached.
FYI, Oracle server v8 and client v10 throw
ORA-00932: inconsistent datatypes: expected CHAR got CLOB
for the SELECT statements.
Subject: | 34pres_lobs.diff |
Index: t/34pres_lobs.t
===================================================================
--- t/34pres_lobs.t (revision 15482)
+++ t/34pres_lobs.t (working copy)
@@ -31,6 +31,8 @@
AutoCommit=>1,
PrintError => 0 ,LongReadLen=>10000000})};
if ($dbh) {
+ plan skip_all => "Data Interface for Persistent LOBs new in Oracle 9"
+ if $dbh->func('ora_server_version')->[0] < 9;
plan tests => 29;
} else {
plan skip_all => "Unable to connect to Oracle";