On Mon, Jun 06, 2005 at 10:48:56AM +0200, Honza Pazdziora wrote:
>
> which got me happy since it gives me the interval value alright.
>
> Please let me know if I should do some more tests for other rare
> types of 10g. If you give me a hint how 10g-specific tests should be
> done in t/*.t, I can
> + my $ora_server_version = $dbh->func("ora_server_version");
> + if ($ora_server_version < 10) {
> +ok(0, 1, 1); # skip
The INTERVAL datatype was introduced in 9i - in which case perhaps this
should be "< 9.2" ?
Also regarding:
--- oci8.c.orig 2005-06-06 10:31:38.0 +0200
+++ oci8.
On Mon, 2005-06-06 at 10:48 +0200, Honza Pazdziora wrote:
> Please let me know if I should do some more tests for other rare
> types of 10g. If you give me a hint how 10g-specific tests should be
> done in t/*.t, I can provide some additions to the test suite as
> well.
>
There are a number of t
On Mon, Jun 06, 2005 at 08:20:05AM -0400, Lincoln A. Baxter wrote:
> On Mon, 2005-06-06 at 10:48 +0200, Honza Pazdziora wrote:
>
> > Please let me know if I should do some more tests for other rare
> > types of 10g. If you give me a hint how 10g-specific tests should be
> > done in t/*.t, I can pr