[Fix](row store) Real default value should be used instead of default… (#25230)

Before this PR the default value is not correct, we should use default value in Frontend schema.
This commit is contained in:
lihangyu
2023-10-18 10:13:44 +08:00
committed by GitHub
parent 5503d04be2
commit b0e0a0569a
16 changed files with 152 additions and 50 deletions

View File

@ -304,6 +304,7 @@ public class SlotDescriptor {
LOG.debug("column name:{}, column unique id:{}", column.getName(), column.getUniqueId());
tSlotDescriptor.setColUniqueId(column.getUniqueId());
tSlotDescriptor.setIsKey(column.isKey());
tSlotDescriptor.setColDefaultValue(column.getDefaultValue());
}
return tSlotDescriptor;
}