Revision: 6323
http://squirrel-sql.svn.sourceforge.net/squirrel-sql/?rev=6323&view=rev
Author: manningr
Date: 2011-07-30 13:23:56 +0000 (Sat, 30 Jul 2011)
Log Message:
-----------
Oracle's varchar_type_table uses varchar now instead of CLOB. I think I did this before due to Oracle's relatively limited varchar size in comparison to other databases, but it's probably a bad idea for testing.
Modified Paths:
--------------
trunk/sql12/plugins/dbcopy/test/sql/Oracle/all_types.sql
Modified: trunk/sql12/plugins/dbcopy/test/sql/Oracle/all_types.sql
===================================================================
--- trunk/sql12/plugins/dbcopy/test/sql/Oracle/all_types.sql 2011-07-27 22:27:06 UTC (rev 6322)
+++ trunk/sql12/plugins/dbcopy/test/sql/Oracle/all_types.sql 2011-07-30 13:23:56 UTC (rev 6323)
@@ -108,6 +108,6 @@
);
CREATE TABLE VARCHAR_TYPE_TABLE
(
- VARCHAR_COLUMN CLOB
+ VARCHAR_COLUMN VARCHAR2(4000)
);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|