Fixed Issue #3330 - #3353
Fixed Issue #3330#3353Hydrocharged wants to merge 1 commit into
Conversation
|
SummaryCoverage spans normal trigger metadata retrieval and compatibility with existing database metadata, plus edge cases around unsupported events, argument quoting, action ordering, database isolation, empty catalogs, and cleanup after table removal. The results indicate healthy behavior across these core data-access and lifecycle scenarios. Safe to merge — all exercised behaviors passed, with no regressions or PR-attributable failures identified. No merge-blocking risk is evident from this run. Tests run by Ito
Tip Reply with @itoqa to send us feedback on this test run. |
|
|
@Hydrocharged DOLT
|
zachmu
left a comment
There was a problem hiding this comment.
Change looks fine, see comments
| }, | ||
| }, | ||
| { | ||
| Name: "Issue #3330: information_schema.triggers", |
There was a problem hiding this comment.
Move next to other information_schema tests
| case triggers.TriggerTiming_After: | ||
| return "AFTER" | ||
| default: | ||
| return "INSTEAD OF" |
| } | ||
| orderKey := strings.Join([]string{t.ID.SchemaName(), t.ID.TableName(), manipulation, orientation, timing}, "\x00") | ||
| actionOrders[orderKey]++ | ||
| //TODO: action_condition needs the WHEN condition, which is only kept in its compiled form |
There was a problem hiding this comment.
This worries me, what does this mean

Fixes #3330.
Stacked on #3352.