Skip to content

Commit 318e410

Browse files
bq validation
1 parent e8e6d5e commit 318e410

1 file changed

Lines changed: 0 additions & 3 deletions

File tree

oracle-plugin/src/main/java/io/cdap/plugin/oracle/OracleSourceSchemaReader.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ public class OracleSourceSchemaReader extends CommonSchemaReader {
3535
* Oracle type constants, from Oracle JDBC Implementation.
3636
*/
3737
public static final int INTERVAL_YM = -103;
38-
public static final int TINY_BLOB = -3;
3938
public static final int INTERVAL_DS = -104;
4039
public static final int TIMESTAMP_TZ = -101;
4140
public static final int TIMESTAMP_LTZ = -102;
@@ -60,7 +59,6 @@ public class OracleSourceSchemaReader extends CommonSchemaReader {
6059
BFILE,
6160
LONG,
6261
LONG_RAW,
63-
TINY_BLOB,
6462
Types.NUMERIC,
6563
Types.DECIMAL
6664
);
@@ -89,7 +87,6 @@ public Schema getSchema(ResultSetMetaData metadata, int index) throws SQLExcepti
8987
return Schema.of(Schema.Type.FLOAT);
9088
case BINARY_DOUBLE:
9189
return Schema.of(Schema.Type.DOUBLE);
92-
case TINY_BLOB:
9390
case BFILE:
9491
case LONG_RAW:
9592
return Schema.of(Schema.Type.BYTES);

0 commit comments

Comments
 (0)