connectors/rocketmq-connect-doris/src/main/java/org/apache/rocketmq/connect/doris/schema/column/ColumnDefinition.java [57:89]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ColumnDefinition(
            ColumnId id,
            int jdbcType,
            String typeName,
            String classNameForType,
            Nullability nullability,
            Mutability mutability,
            int precision,
            int scale,
            boolean signedNumbers,
            int displaySize,
            boolean autoIncremented,
            boolean caseSensitive,
            boolean searchable,
            boolean currency,
            boolean isPrimaryKey
    ) {
        this.id = id;
        this.typeName = typeName;
        this.jdbcType = jdbcType;
        this.displaySize = displaySize;
        this.precision = precision;
        this.scale = scale;
        this.autoIncremented = autoIncremented;
        this.caseSensitive = caseSensitive;
        this.searchable = searchable;
        this.currency = currency;
        this.signedNumbers = signedNumbers;
        this.nullability = nullability != null ? nullability : Nullability.UNKNOWN;
        this.mutability = mutability != null ? mutability : Mutability.MAYBE_WRITABLE;
        this.classNameForType = classNameForType;
        this.isPrimaryKey = isPrimaryKey;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



connectors/rocketmq-connect-jdbc/src/main/java/org/apache/rocketmq/connect/jdbc/schema/column/ColumnDefinition.java [58:90]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public ColumnDefinition(
            ColumnId id,
            int jdbcType,
            String typeName,
            String classNameForType,
            Nullability nullability,
            Mutability mutability,
            int precision,
            int scale,
            boolean signedNumbers,
            int displaySize,
            boolean autoIncremented,
            boolean caseSensitive,
            boolean searchable,
            boolean currency,
            boolean isPrimaryKey
    ) {
        this.id = id;
        this.typeName = typeName;
        this.jdbcType = jdbcType;
        this.displaySize = displaySize;
        this.precision = precision;
        this.scale = scale;
        this.autoIncremented = autoIncremented;
        this.caseSensitive = caseSensitive;
        this.searchable = searchable;
        this.currency = currency;
        this.signedNumbers = signedNumbers;
        this.nullability = nullability != null ? nullability : Nullability.UNKNOWN;
        this.mutability = mutability != null ? mutability : Mutability.MAYBE_WRITABLE;
        this.classNameForType = classNameForType;
        this.isPrimaryKey = isPrimaryKey;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



