Skip to content

Commit 9b2a0d9

Browse files
committed
proto: remove support for unsigned field type
Part of tarantool/aeon#472
1 parent 8809fba commit 9b2a0d9

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

aeon_schema.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ enum Engine {
4141
enum FieldType {
4242
FIELD_TYPE_UNSPECIFIED = 0;
4343
FIELD_TYPE_ANY = 1;
44-
FIELD_TYPE_UNSIGNED = 2;
4544
FIELD_TYPE_STRING = 3;
4645
FIELD_TYPE_DOUBLE = 5;
4746
FIELD_TYPE_INTEGER = 6;

aeon_value.proto

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ message IntervalValue {
4040
// stored in the database.
4141
message Value {
4242
oneof kind {
43-
uint64 unsigned_value = 1;
4443
string string_value = 2;
4544
double double_value = 3;
4645
sint64 integer_value = 4;

0 commit comments

Comments
 (0)