-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
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
add a new blog #54
add a new blog #54
Conversation
tidb source code reading 10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Inline code
has back-ticks around
it.
tidb-source-code-reading-10.md
Outdated
|
||
Column 的实现参考了Apache Arrow,Column 的代码在 [这里](https://github.com/pingcap/tidb/blob/source-code/util/chunk/chunk.go#L320)。根据所存储的数据类型,我们有两种Column: | ||
|
||
* 定长 Column:存储定长类型的数据,比如:Double、Bigint、Decimal 等 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using Double
Bigint
Decimal
is better. @Husiyu
tidb-source-code-reading-10.md
Outdated
|
||
* 定长 Column:存储定长类型的数据,比如:Double、Bigint、Decimal 等 | ||
|
||
* 变长 Column:存储变长类型的数据,比如:Char、Varchar 等 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using Char
Varchar
is better.
LGTM |
1 similar comment
LGTM |
@xuechunL PTAL