Cannot use join with Enzyme

sebih
New Contributor II
I suppose I can use incrementalization on pipelines. Supported operators are listed in here: https://docs.databricks.com/aws/en/optimizations/incremental-refresh#support-for-materialized-view-i...However, when I run the pipeline, it does not use incrementalization saying that "the inner join operator" is not supported as opposed to the documentation.
{
  "maintenance_type": "MAINTENANCE_TYPE_WINDOW_FUNCTION",
  "incrementalization_issues": [
    {
      "issue_type": "PLAN_NOT_INCREMENTALIZABLE",
      "prevent_incrementalization": true,
      "operator_name": "Join",
      "join_type": "INNER",
      "plan_not_incrementalizable_sub_type": "OPERATOR_NOT_SUPPORTED"
    }
  ]
},
I've also set all base tables' properties to this:
delta.enableDeletionVectors = true,
delta.enableRowTracking = true,
delta.enableChangeDataFeed = true
I wonder whether there is a switch on your side to enable this. Is it possible? I just want to make clear the conflict that is created by the product and its documentation.