Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -391,13 +391,13 @@ public Collection<QueryService.ParameterDecl> getNamedParameters() {
}

@Override
public void fireBatchTrigger(Container c, User u,TriggerType type, boolean before, BatchValidationException errors, Map<String, Object> extraContext) throws BatchValidationException {
_tableInfo.fireBatchTrigger(c, u, type, before, errors, extraContext);
public void fireBatchTrigger(Container c, User u, TriggerType type, @Nullable QueryUpdateService.InsertOption insertOption, boolean before, BatchValidationException errors, Map<String, Object> extraContext) throws BatchValidationException {
_tableInfo.fireBatchTrigger(c, u, type, insertOption, before, errors, extraContext);
}

@Override
public void fireRowTrigger(Container c, User u, TriggerType type, boolean before, int rowNumber, @Nullable Map<String, Object> newRow, @Nullable Map<String, Object> oldRow, Map<String, Object> extraContext, @Nullable Map<String, Object> existingRecord) throws ValidationException {
_tableInfo.fireRowTrigger(c, u, type, before, rowNumber, newRow, oldRow, extraContext, existingRecord);
public void fireRowTrigger(Container c, User u, TriggerType type, @Nullable QueryUpdateService.InsertOption insertOption, boolean before, int rowNumber, @Nullable Map<String, Object> newRow, @Nullable Map<String, Object> oldRow, Map<String, Object> extraContext, @Nullable Map<String, Object> existingRecord, boolean manageColumns) throws ValidationException {
_tableInfo.fireRowTrigger(c, u, type, insertOption, before, rowNumber, newRow, oldRow, extraContext, existingRecord, manageColumns);
}

@Override
Expand Down
Loading