Skip to content
#

data-versioning

Here are 19 public repositories matching this topic...

saewitz
saewitz commented Nov 2, 2021
alter table player_season_stat_totals add column league_id INT;
alter table player_season_stat_totals drop primary key;
alter table player_season_stat_totals add primary key (player_id, team_id, season_id, season_type_id, league_id);
update player_season_stat_totals set league_id=0;

get error: column <league_id> received nil but is non-nullable

Shouldn't be able to add primary

kedro
lakeFS
ozkatz
ozkatz commented Nov 7, 2021

What

being able to take a data object (or prefix, like a partition) and get back the commit that added/modified it.

Why

This is valuable lineage information that is currently available in lakeFS but not exposed easily, and mimics the behavior of git blame

How

Given the lakeFS API already supports listing the log of commits for an object or prefix (🎉), this could be a `

Improve this page

Add a description, image, and links to the data-versioning topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the data-versioning topic, visit your repo's landing page and select "manage topics."

Learn more