modules/schema/src/main/java/org/apache/ignite/internal/schema/configuration/ConfigurationToSchemaDescriptorConverter.java [45:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static {
        List<NativeType> types = IgniteUtils.collectStaticFields(NativeTypes.class, NativeType.class);

        Map<String, NativeType> tmp = new HashMap<>(types.size(), 1.0f);

        for (NativeType type : types) {
            if (!type.spec().fixedLength()) {
                continue;
            }

            tmp.put(type.spec().name(), type);
        }

        FIX_SIZED_TYPES = Map.copyOf(tmp);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/schema/src/main/java/org/apache/ignite/internal/schema/catalog/CatalogToSchemaDescriptorConverter.java [45:59]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    static {
        List<NativeType> types = IgniteUtils.collectStaticFields(NativeTypes.class, NativeType.class);

        Map<String, NativeType> tmp = new HashMap<>(types.size(), 1.0f);

        for (NativeType type : types) {
            if (!type.spec().fixedLength()) {
                continue;
            }

            tmp.put(type.spec().name(), type);
        }

        FIX_SIZED_TYPES = Map.copyOf(tmp);
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



