Examples of onUpdateSchemaUserType()


Examples of org.caffinitas.mapper.core.tracing.ExecutionTracer.onUpdateSchemaUserType()

                if (schemaObject instanceof MappedCompositeUDT) {
                    @SuppressWarnings("unchecked") UpdateSchemaStatus status =
                        ((MappedSchemaObject<UserType>) schemaObject)
                            .updateSchema(this, keyspaceMetadata.getUserType(schemaObject.getCqlTable().getTable()));
                    if (tracer != null) {
                        tracer.onUpdateSchemaUserType(this, keyspaceMetadata, schemaObject, status);
                    }
                    change |= status.change;
                    if (status.change) {
                        CqlTable t = schemaObject.getCqlTable();
                        LOGGER.info("Changes in Cassandra user type {} successfully applied - exists:{} valid:{}", t, t.isExists(), t.isValid());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.