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
As part of the solution to #1623 we will need to integrate a cassandra migration into boost.
We need to change the MinerAddr column from t1234 to f1234, however there are no built-in string manipulation functions, and yugabyte does not support user defined functions. So we need a migration library that can run golang migration functions.
We use goose to do this for sqlite and postgres, but it turns out that:
As part of the solution to #1623 we will need to integrate a cassandra migration into boost.
We need to change the MinerAddr column from
t1234
tof1234
, however there are no built-in string manipulation functions, and yugabyte does not support user defined functions. So we need a migration library that can run golang migration functions.We use goose to do this for sqlite and postgres, but it turns out that:
sql.DB
constructGiven all of the above, I think we should write a simple migration library ourselves for cassandra that
migration_version
with aname
columns to keep track of cassandra migrationsmigration_version
against the array of migration functionsmigration_version
tableThe text was updated successfully, but these errors were encountered: