We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
record::runtime::Column
ColumnDesc
Column define as:
Column
pub struct Column { pub datatype: Datatype, pub value: Arc<dyn Any + Send + Sync>, pub is_nullable: bool, pub name: String, }
and ColumnDesc define as:
pub struct ColumnDesc { pub datatype: Datatype, pub is_nullable: bool, pub name: String, }
which is redundant
Define Column like:
pub struct Column { pub desc: ColumnDesc, pub value: Arc<dyn Any + Send + Sync>, }
should be great.
Make definition clearer
No
I think there might be a lot, I will add it in the future.
The text was updated successfully, but these errors were encountered:
TON-94 refactor: define `record::runtime::Column` with `ColumnDesc`
Sorry, something went wrong.
No branches or pull requests
What is the current?
Column
define as:and
ColumnDesc
define as:which is redundant
What will it become?
Define
Column
like:should be great.
What are the benefits?
Make definition clearer
Are there any alternatives?
No
Does it have a reference?
I think there might be a lot, I will add it in the future.
The text was updated successfully, but these errors were encountered: