ydb
ydb copied to clipboard
Implement system table `.sys/config`
This table should represent the config on the storage side.
Suggested struct is as follows:
CREATE TABLE config (
Name String NOT NULL,
Value String,
Default String,
Source String, -- path to config file, default, or whatever
);
It will help to understand how config values were formed and what are they.