Skip to content

Commit

Permalink
message and enum
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanbohan committed May 31, 2024
1 parent 8b38a63 commit 674da33
Show file tree
Hide file tree
Showing 2 changed files with 167 additions and 53 deletions.
209 changes: 158 additions & 51 deletions go/greptime/v1/row.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 9 additions & 2 deletions proto/greptime/v1/row.proto
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,15 @@ message ColumnSchema {
// Extension for ColumnDataType.
ColumnDataTypeExtension datatype_extension = 4;

// "index.type": "inverted" to indicate inverted index
map<string, string> options = 5;
ColumnOptions options = 5;
}

message ColumnOptions {
IndexType index_type = 1;
}

enum IndexType {
INVERTED = 0;
}

message Row { repeated Value values = 1; }
Expand Down

0 comments on commit 674da33

Please sign in to comment.