From 903ba9750d4edf9a1f264cdeb25ba65efee99eef Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Fri, 31 Mar 2000 09:54:55 -0800
Subject: [PATCH] should now handle rowid better..

Rev: src/modules/Oracle/oracle.c:1.29
---
 src/modules/Oracle/oracle.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/modules/Oracle/oracle.c b/src/modules/Oracle/oracle.c
index b9a712720c..8a95db4bc3 100644
--- a/src/modules/Oracle/oracle.c
+++ b/src/modules/Oracle/oracle.c
@@ -1,5 +1,5 @@
 /*
- * $Id: oracle.c,v 1.28 2000/03/30 19:47:17 hubbe Exp $
+ * $Id: oracle.c,v 1.29 2000/03/31 17:54:55 hubbe Exp $
  *
  * Pike interface to Oracle databases.
  *
@@ -41,7 +41,7 @@
 #include <oci.h>
 #include <math.h>
 
-RCSID("$Id: oracle.c,v 1.28 2000/03/30 19:47:17 hubbe Exp $");
+RCSID("$Id: oracle.c,v 1.29 2000/03/31 17:54:55 hubbe Exp $");
 
 
 #define BLOB_FETCH_CHUNK 16384
@@ -687,6 +687,7 @@ static void f_fetch_fields(INT32 args)
 	  break;
 
 	case SQLT_RID:
+	case SQLT_RDD:
 	  type_name="rowid";
 	  data_size=-1;
 	  type=SQLT_LNG;
-- 
GitLab