common/schema: group some columns to skip them quickly when not enabled

This commit is contained in:
Vincent Bernat
2023-01-21 11:15:08 +01:00
parent 7c3494f6b8
commit 9c51b22845
10 changed files with 154 additions and 54 deletions

View File

@@ -47,6 +47,6 @@ func New(config Configuration) (*Component, error) {
}
return &Component{
c: config,
Schema: schema,
Schema: schema.finalize(),
}, nil
}