-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The previous implementation of the schema resolver wasn't resolving recursively the entities of a schema that was containing references. With that implementation the schema are recursively resolved and the references are sent to the parser.
- Loading branch information
Showing
23 changed files
with
534 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...ation/runtime/c_96501a92e75f3b082ce2233ed92f28af/c_96501a92e75f3b082ce2233ed92f28af.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
syntax = "proto3"; | ||
|
||
import "c_ab748295b306e9585e736a0a80bfd249.proto"; | ||
|
||
message Example { | ||
Reference example = 1; | ||
} |
27 changes: 27 additions & 0 deletions
27
...tion/runtime/c_96501a92e75f3b082ce2233ed92f28af/c_96501a92e75f3b082ce2233ed92f28af_pb2.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 5 additions & 0 deletions
5
...ation/runtime/c_96501a92e75f3b082ce2233ed92f28af/c_ab748295b306e9585e736a0a80bfd249.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
syntax = "proto3"; | ||
|
||
message Reference { | ||
string name = 1; | ||
} |
26 changes: 26 additions & 0 deletions
26
...tion/runtime/c_96501a92e75f3b082ce2233ed92f28af/c_ab748295b306e9585e736a0a80bfd249_pb2.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
.../unit/runtime/c_0f5deb2c34245146c4809e95bd712e9f/c_0f5deb2c34245146c4809e95bd712e9f.proto
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
syntax = "proto3"; | ||
|
||
import "c_ef4d87254985d5212360c04fed3846a5.proto"; | ||
|
||
option java_package = "com.serge.protobuf"; | ||
option java_outer_classname = "TestMessage"; | ||
|
||
message Message { | ||
int32 index = 1; | ||
Query qry = 2; | ||
} |
Oops, something went wrong.