You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Stringmessage = "Trigger '" + script.getName() + "' attempted to " + String.join(", ", diffs) + ". Declare managed columns to include them in the column set.";
2053
-
if (manageColumns)
2054
-
{
2055
-
errors.addGlobalError(message);
2056
-
break;
2057
-
}
2058
-
2059
-
LOG.warn(message + " This will be an error if invoked via data iteration.");
2054
+
errors.addGlobalError(message);
2055
+
break;
2060
2056
}
2061
2057
}
2062
2058
@@ -2070,15 +2066,10 @@ public void fireRowTrigger(
2070
2066
{
2071
2067
if (!newRowTracked.containsKey(col))
2072
2068
{
2069
+
// Not using errors.addFieldError() here as the managed column may not be visible
2073
2070
Stringmessage = "Trigger '" + script.getName() + "' declared the managed column '" + col + "' but did not set a value for it. Set null to clear or provide a value.";
2074
-
if (manageColumns)
2075
-
{
2076
-
// Not using errors.addFieldError() here as the managed column may not be visible
2077
-
errors.addGlobalError(message);
2078
-
break;
2079
-
}
2080
-
2081
-
LOG.warn(message + " This will be an error if invoked via data iteration.");
0 commit comments