Class DDLOperations


  • public class DDLOperations
    extends java.lang.Object
    View operations that lead to a new version of view getting created.

    A version can return the operation that resulted in creating that version of the view. Users can inspect the operation to get more information in case a rollback is desired.

    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String ALTER_COMMENT
      View column comments were altered.
      static java.lang.String CREATE
      The view was created.
      static java.lang.String REPLACE
      View definition was replaced.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • CREATE

        public static final java.lang.String CREATE
        The view was created.
        See Also:
        Constant Field Values
      • REPLACE

        public static final java.lang.String REPLACE
        View definition was replaced. This operation covers actions such as associating a different schema with the view, adding a column comment etc.
        See Also:
        Constant Field Values
      • ALTER_COMMENT

        public static final java.lang.String ALTER_COMMENT
        View column comments were altered.
        See Also:
        Constant Field Values