Skip to content
This repository has been archived by the owner on Sep 27, 2019. It is now read-only.

Commit

Permalink
change type quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DeanChensj committed May 13, 2018
1 parent 5b9818c commit e3c75c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/catalog/column.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ class Column : public Printable {
: column_name(column_name),
column_type(value_type),
fixed_length(INVALID_OID),
is_inlined(is_inlined),
column_offset(column_offset) {
SetInlined();
this->is_inlined = is_inlined;

// We should not have an inline value of length 0
if (is_inlined && column_length == 0) {
Expand Down

0 comments on commit e3c75c3

Please sign in to comment.