Options

Static data file not updated when column renamed

SimonBarnesSimonBarnes Posts: 6 New member
edited March 2, 2021 1:32PM in SQL Source Control
I've just noticed that if you rename a column in a table that has static data linked (and there's no actual data change), Source Control doesn't update the static data file containing the INSERT statements. Unlinking and relinking static data has no effect, so the files have to be amended by hand.

I suspect that it's basing its decision purely on whether a delta in the data has been observed. I think it might be wise to have Source Control regenerate the static data script text any time a static data-linked table has a schema or data change, and then just diff it against what's in the repo to decide whether there's a change.

Answers

  • Options
    Hi @SimonBarnes,

    I suspect that this is possible to update by:
    • Unlinking the static data
    • Committing
    • Relinking the static data
    Did you happen to test that way with a commit between unlink and relink? (I haven't tested this exact scenario, but in working with other scenarios I have found that pattern causes the static data file to be regenerated.)

    Kendra
  • Options
    SimonBarnesSimonBarnes Posts: 6 New member
    I definitely unlinked and relinked, but I don't think I committed in between. I've tested it again and I can't replicate exactly what I was experiencing so I think it may have been a temporary wonk.

    However when testing it I found that (without unlinking) a change is detected on the static data file, but it doesn't pick up the new column name and wants to replace all values in the old (no longer existent) column with NULLs. I think that's part of an existing problem WRT how Source Control deals with renames (and indeed whether it can detect them as renames at all), but the steps you've outlined above definitely suffice in getting the static data file back into shape — I'd forgotten that an unlink actually generates an entry in the next commit to delete the file, so now I've got that straight in my head I should remember for the future.

    Thanks!
Sign In or Register to comment.