modules/schema/src/main/java/org/apache/ignite/internal/schema/configuration/ValueSerializationHelper.java [52:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            case BOOLEAN:
            case INT8:
            case INT16:
            case INT32:
            case INT64:
            case FLOAT:
            case DOUBLE:
            case DECIMAL:
            case DATE:
            case TIME:
            case DATETIME:
            case TIMESTAMP:
            case NUMBER:
            case STRING:
            case UUID:
                return defaultValue.toString();
            case BYTES:
                return IgniteUtils.toHexString((byte[]) defaultValue);
            case BITMASK:
                return IgniteUtils.toHexString(((BitSet) defaultValue).toByteArray());
            default:
                throw new IllegalStateException("Unknown type [type=" + type + ']');
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/schema/src/testFixtures/java/org/apache/ignite/internal/schema/testutils/SchemaConfigurationConverter.java [532:553]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            case BOOLEAN:
            case INT8:
            case INT16:
            case INT32:
            case INT64:
            case FLOAT:
            case DOUBLE:
            case DECIMAL:
            case DATE:
            case TIME:
            case DATETIME:
            case TIMESTAMP:
            case NUMBER:
            case STRING:
            case UUID:
                return defaultValue.toString();
            case BYTES:
                return IgniteUtils.toHexString((byte[]) defaultValue);
            case BITMASK:
                return IgniteUtils.toHexString(((BitSet) defaultValue).toByteArray());
            default:
                throw new IllegalStateException("Unknown type [type=" + type + ']');
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



