dolt diff
shows NULL values for virtual generated columns
#8879
Labels
dolt diff
shows NULL values for virtual generated columns
#8879
Repro steps:
dolt diff
will produce the following output:This is likely because
c0
is virtual, so the tuples in the table don't actually contain a value for it. Displaying the correct values would require evaluating the stored expression for that column, which requires a SQL engine.As for the correct behavior here, I'm leaning towards excluding virtual generated columns from
dolt diff
entirely, since they aren't actually part of the data in the diff.The text was updated successfully, but these errors were encountered: