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
sql/inspect: skip REFCURSOR stored columns in consistency check
REFCURSOR values cannot be compared for equality, which breaks the
`INSPECT` command when an index stores a column of this type. During a
consistency check, INSPECT attempts to compare stored column payloads
between the primary and secondary indexes. This fails for REFCURSOR
values because the column type cannot be used in an equality comparison.
This change skips REFCURSOR stored columns during the primary/secondary
comparison.
Informs: #155676
Epic: CRDB-55075
Release note (bug fix): INSPECT can now be run on tables with indexes
that store REFCURSOR-typed columns.
0 commit comments