提交 56f9f22b 编写于 作者: S Serge Rider

#230 Local RSV ordering fix

上级 b0973d29
......@@ -63,7 +63,7 @@ public class OracleTableColumnManager extends SQLTableColumnManager<OracleTableC
final OracleTableColumn column = new OracleTableColumn(parent);
column.setName(getNewColumnName(context, parent));
column.setType((OracleDataType) columnType);
column.setDataType((OracleDataType) columnType);
column.setTypeName(columnType == null ? "INTEGER" : columnType.getName()); //$NON-NLS-1$
column.setMaxLength(columnType != null && columnType.getDataKind() == DBPDataKind.STRING ? 100 : 0);
column.setValueType(columnType == null ? Types.INTEGER : columnType.getTypeID());
......
......@@ -105,7 +105,7 @@ public class OracleTableColumn extends JDBCTableColumn<OracleTableBase> implemen
return type;
}
public void setType(OracleDataType type)
public void setDataType(OracleDataType type)
{
this.type = type;
this.typeName = type == null ? "" : type.getFullQualifiedName();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册