Skip to content

Row Tracking

Under Development

Row Tracking is under development and only available in testing.

Row Tracking is enabled on a delta table using delta.enableRowTracking table property.

CREATE TABLE tbl(a int)
USING delta
TBLPROPERTIES (
  'delta.enableRowTracking' = 'true'
)