-
Notifications
You must be signed in to change notification settings - Fork 590
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: alter the schema registry of table with connector (#15025)
Co-authored-by: Eric Fu <[email protected]>
- Loading branch information
1 parent
1f8ffa1
commit 3f102e1
Showing
14 changed files
with
371 additions
and
163 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
20 changes: 20 additions & 0 deletions
20
e2e_test/schema_registry/protobuf/user_with_more_fields.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,20 @@ | ||
syntax = "proto3"; | ||
|
||
package test; | ||
|
||
import "google/protobuf/source_context.proto"; | ||
|
||
message User { | ||
int32 id = 1; | ||
string name = 2; | ||
string address = 3; | ||
string city = 4; | ||
Gender gender = 5; | ||
google.protobuf.SourceContext sc = 6; | ||
int32 age = 7; // new field here | ||
} | ||
|
||
enum Gender { | ||
MALE = 0; | ||
FEMALE = 1; | ||
} |
29 changes: 29 additions & 0 deletions
29
e2e_test/schema_registry/protobuf/user_with_more_fields_pb2.py
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.