Class AlterConstraintConstantAction
- java.lang.Object
-
- org.apache.derby.impl.sql.execute.DDLConstantAction
-
- org.apache.derby.impl.sql.execute.DDLSingleTableConstantAction
-
- org.apache.derby.impl.sql.execute.ConstraintConstantAction
-
- org.apache.derby.impl.sql.execute.AlterConstraintConstantAction
-
- All Implemented Interfaces:
ConstantAction
public class AlterConstraintConstantAction extends ConstraintConstantAction
This class describes actions that are ALWAYS performed for a alter constraint at Execution time.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) boolean[]
characteristics
private java.lang.String
constraintSchemaName
-
Fields inherited from class org.apache.derby.impl.sql.execute.ConstraintConstantAction
constraintId, constraintName, constraintType, indexAction, schemaId, schemaName, tableName
-
Fields inherited from class org.apache.derby.impl.sql.execute.DDLSingleTableConstantAction
tableId
-
Fields inherited from interface org.apache.derby.iapi.sql.execute.ConstantAction
WHEN_MATCHED_THEN_DELETE, WHEN_MATCHED_THEN_UPDATE, WHEN_NOT_MATCHED_THEN_INSERT
-
-
Constructor Summary
Constructors Constructor Description AlterConstraintConstantAction(java.lang.String constraintName, java.lang.String constraintSchemaName, boolean[] characteristics, java.lang.String tableName, UUID tableId, java.lang.String tableSchemaName, IndexConstantAction indexAction)
Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
executeConstantAction(Activation activation)
This is the guts of the Execution-time logic for ALTER CONSTRAINT.java.lang.String
toString()
-
Methods inherited from class org.apache.derby.impl.sql.execute.ConstraintConstantAction
getConstraintId, getConstraintName, getConstraintType, getIndexAction, validateConstraint, validateFKConstraint
-
Methods inherited from class org.apache.derby.impl.sql.execute.DDLSingleTableConstantAction
dropConglomerate, dropConglomerate, dropConstraint, dropConstraint, dropConstraint, executeConglomReplacement, getConglomReplacementAction, recreateUniqueConstraintBackingIndexAsUniqueWhenNotNull
-
Methods inherited from class org.apache.derby.impl.sql.execute.DDLConstantAction
addColumnDependencies, adjustUDTDependencies, adjustUDTDependencies, constructToString, getAndCheckSchemaDescriptor, getSchemaDescriptorForCreate, lockTableForDDL, storeConstraintDependenciesOnPrivileges, storeViewTriggerDependenciesOnPrivileges
-
-
-
-
Constructor Detail
-
AlterConstraintConstantAction
AlterConstraintConstantAction(java.lang.String constraintName, java.lang.String constraintSchemaName, boolean[] characteristics, java.lang.String tableName, UUID tableId, java.lang.String tableSchemaName, IndexConstantAction indexAction)
Constructor.- Parameters:
constraintName
- The constraint name.constraintSchemaName
- The schema that constraint lives in.characteristics
- The (presumably) altered enforcement characteristics.tableName
- Table name.tableId
- The UUID of table.tableSchemaName
- The schema that table lives in.indexAction
- IndexConstantAction for constraint
-
-
Method Detail
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
executeConstantAction
public void executeConstantAction(Activation activation) throws StandardException
This is the guts of the Execution-time logic for ALTER CONSTRAINT.- Parameters:
activation
- The execution environment for this constant action.- Throws:
StandardException
- Thrown on failure- See Also:
ConstantAction.executeConstantAction(org.apache.derby.iapi.sql.Activation)
-
-