mirror of
https://github.com/debezium/postgres-decoderbufs.git
synced 2026-02-04 06:56:22 +00:00
Adding support for Postgres Point as well as PostGIS Geometry/Geography Points
This commit is contained in:
@@ -10,6 +10,11 @@ enum Op {
|
||||
DELETE = 2;
|
||||
}
|
||||
|
||||
message Point {
|
||||
required double x = 1;
|
||||
required double y = 2;
|
||||
}
|
||||
|
||||
message DatumMessage {
|
||||
optional string column_name = 1;
|
||||
optional int64 column_type = 2;
|
||||
@@ -20,6 +25,7 @@ message DatumMessage {
|
||||
optional bool datum_bool = 7;
|
||||
optional string datum_string = 8;
|
||||
optional bytes datum_bytes = 9;
|
||||
optional Point datum_point = 10;
|
||||
}
|
||||
|
||||
message RowMessage {
|
||||
|
||||
Reference in New Issue
Block a user