Class AlterModelRenameOperation

    • Constructor Detail

      • AlterModelRenameOperation

        public AlterModelRenameOperation​(org.apache.flink.table.catalog.ObjectIdentifier modelIdentifier,
                                         org.apache.flink.table.catalog.ObjectIdentifier newModelIdentifier,
                                         boolean ignoreIfNotExists)
        Creates a AlterModelRenameOperation.
        Parameters:
        modelIdentifier - The identifier of the model to rename.
        newModelIdentifier - The new identifier of the model.
        ignoreIfNotExists - A flag that indicates if the operation should throw an exception if model does not exist.
    • Method Detail

      • getModelIdentifier

        public org.apache.flink.table.catalog.ObjectIdentifier getModelIdentifier()
      • getNewModelIdentifier

        public org.apache.flink.table.catalog.ObjectIdentifier getNewModelIdentifier()
      • ignoreIfNotExists

        public boolean ignoreIfNotExists()
      • asSummaryString

        public String asSummaryString()
        Description copied from interface: Operation
        Returns a string that summarizes this operation for printing to a console. An implementation might skip very specific properties.
        Specified by:
        asSummaryString in interface Operation
        Returns:
        summary string of this operation for debugging purposes