You are viewing a plain text version of this content. The canonical link for it is here.
Posted to lokahi-commits@incubator.apache.org by to...@apache.org on 2006/06/06 14:20:41 UTC

svn commit: r412128 - /incubator/lokahi/lokahi/trunk/database/types.sql

Author: toback
Date: Tue Jun  6 07:20:41 2006
New Revision: 412128

URL: http://svn.apache.org/viewvc?rev=412128&view=rev
Log:
added missing type bi_list

Added:
    incubator/lokahi/lokahi/trunk/database/types.sql

Added: incubator/lokahi/lokahi/trunk/database/types.sql
URL: http://svn.apache.org/viewvc/incubator/lokahi/lokahi/trunk/database/types.sql?rev=412128&view=auto
==============================================================================
--- incubator/lokahi/lokahi/trunk/database/types.sql (added)
+++ incubator/lokahi/lokahi/trunk/database/types.sql Tue Jun  6 07:20:41 2006
@@ -0,0 +1,4 @@
+CREATE TYPE BI_TYPE AS OBJECT ( COL1 VARCHAR2(2000), COL2 VARCHAR2(2000) );
+/
+CREATE TYPE BI_LIST AS TABLE OF BI_TYPE;
+/