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
It would be useful to add a helper function, maybe dolthub_table_hash(), that can retrieve the hash of a specific table. This would allow for targets to check if a table has been updated as a part of the workflow. Checking a table hash can be done using the DOLT API via something like SELECT SHA1('aido_diseases') which could be combined with AS OF to check the hash of a table at one commit against the hash of a table at another. I don't think DOLT has checksum but SHA1() does work.
This might also be useful as a targets factory, i.e. tar_dolthub_table(),
It would be useful to add a helper function, maybe
dolthub_table_hash()
, that can retrieve the hash of a specific table. This would allow for targets to check if a table has been updated as a part of the workflow. Checking a table hash can be done using the DOLT API via something likeSELECT SHA1('aido_diseases')
which could be combined withAS OF
to check the hash of a table at one commit against the hash of a table at another. I don't think DOLT has checksum butSHA1()
does work.This might also be useful as a targets factory, i.e.
tar_dolthub_table()
,from @noamross:
The text was updated successfully, but these errors were encountered: