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
147087: xform: increase pool size for "heavy" configs r=yuzefovich a=yuzefovich
We just saw an engflow failure that looks like an OOM under deadlock config, so let's bump the size.
Fixes: #146867.
Release note: None
147182: row/fetcher: clean up and harden TestRowFetcherMVCCMetadata r=yuzefovich a=yuzefovich
This commit refactors `TestRowFetcherMVCCMetadata` a bit to explicitly request `crdb_internal_mvcc_timestamp` as opposed to fishing it out of the fetcher, which allows removing an exported method from the latter.
This commit also hardens the test to de-flake it when write buffering is enabled. The test scans the storage engine directly, so we need to tweak a testing knob to ensure that COMMIT blocks until the writes are committed into pebble.
Fixes: #147174.
Release note: None
147237: sql: populate information_schema.triggers r=rafiss a=rafiss
Previously, the information_schema.triggers table was unimplemented and always returned zero rows. This made it impossible to query trigger metadata through standard SQL information schema views.
This change implements the populate function for information_schema.triggers, allowing users to query trigger information. The implementation:
Note that transition tables (action_reference_old_table/new_table) will only be populated once statement-level triggers are supported. Currently, these columns return NULL for row-level triggers.
Fixes#143534
Release note (sql change): The information_schema.triggers table is now populated with trigger metadata. Users can query this table to see all triggers defined in their database, including the trigger name, timing (BEFORE/AFTER), event type (INSERT/UPDATE/DELETE), and associated function. Each trigger event appears as a separate row in the table.
Co-authored-by: Yahor Yuzefovich <[email protected]>
Co-authored-by: Rafi Shamim <[email protected]>
0 commit comments