We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb1624d commit 18104faCopy full SHA for 18104fa
1 file changed
dbms/src/TiDB/Decode/RowCodec.cpp
@@ -418,9 +418,9 @@ inline bool addDefaultValueToColumnIfPossible(
418
{
419
if (!force_decode)
420
421
- // This is a Column that does not have encoded datum in the value,
422
- // but it is defined as NOT NULL and has no default value.
423
- // It could be a row encoded by newer schema after turning `NOT NULL` to `NULLABLE`. Return false to trigger schema sync when `force_decode==false`.
+ // This is a Column that does not have encoded datum in the value, but it is defined as NOT NULL.
+ // It could be a row encoded by newer schema after turning `NOT NULL` to `NULLABLE`.
+ // Return false to trigger schema sync when `force_decode==false`.
424
return false;
425
}
426
// Else the row does not contain this "not null" / "no default value" column,
0 commit comments