commit | d5079ed7db6da57bd8552d65dbfe6df7c902dc52 | [log] [tgz] |
---|---|---|
author | Joshua Haberman <[email protected]> | Wed Jan 27 10:12:59 2021 -0800 |
committer | GitHub <[email protected]> | Wed Jan 27 10:12:59 2021 -0800 |
tree | 21f09bc92b28ecdca5a6435c46d26b1cd58f95e3 | |
parent | f6da785731da2cfb962a698eff6b2fc093bc1632 [diff] [blame] |
Fixed PHP to support field numbers >=2**28. (#8235)
diff --git a/php/tests/proto/test.proto b/php/tests/proto/test.proto index 368b19e..8835729 100644 --- a/php/tests/proto/test.proto +++ b/php/tests/proto/test.proto
@@ -220,6 +220,10 @@ string tag14 = 160; } +message TestLargeFieldNumber { + int32 large_field_number = 536870911; +} + message TestReverseFieldOrder { repeated int32 a = 2; string b = 1;