summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSergey Uzhakov <[email protected]>2022-06-10 10:14:46 +0300
committerSergey Uzhakov <[email protected]>2022-06-10 10:14:46 +0300
commitdba061dc19e315a24507dabb92821865b08548d7 (patch)
tree06cd3f4a95a5316fc64bb7f6e9e16cd55d904077
parent70783aad408c59642f118588052ae22a057fba4b (diff)
YQ-1154: support postgres type in public protos, change oid type from int32 to uint32
ref:0cbc009ccac8f0447cf3b70a6da5c6968a7ad186
-rw-r--r--ydb/public/api/protos/ydb_value.proto2
1 files changed, 1 insertions, 1 deletions
diff --git a/ydb/public/api/protos/ydb_value.proto b/ydb/public/api/protos/ydb_value.proto
index 48aba64a6c6..bbee9e5c035 100644
--- a/ydb/public/api/protos/ydb_value.proto
+++ b/ydb/public/api/protos/ydb_value.proto
@@ -53,7 +53,7 @@ message TaggedType {
message PgType {
// pg object id of the type
// full registry could be found here: https://github.com/postgres/postgres/blob/master/src/include/catalog/pg_type.dat
- int32 oid = 1; // required
+ uint32 oid = 1; // required
// advanced type details useful for pg wire format proxying
int32 typlen = 2; // optional, set to 0 by default
int32 typmod = 3; // optional, set to 0 by default