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
meta/sql: only update necessary columns for several interface
Some interface impl accidentally update all columns of metadata.
Although it is okay for SQL-based metadata engine, it is not necessary
and may cause error on some distributed variant, like Citus for
PostgreSQL, because the SQL updates the distributed column, even though
the column value is not changed, just like:
UPDATE jfs_chunk SET inode = 1 ... WHERE inode = 1;
0 commit comments