aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoramikish <amikish@yandex-team.com>2023-10-20 12:36:43 +0300
committeramikish <amikish@yandex-team.com>2023-10-20 13:46:31 +0300
commita01b56c670ad27264e82d324860bfcd23a0a8ed6 (patch)
treed43062960aecbefac52b04c6380f52d6547f2a4d
parentec14079d276bb214a8eea218f5f130c8ba1ca7fa (diff)
downloadydb-a01b56c670ad27264e82d324860bfcd23a0a8ed6.tar.gz
Adaptive fetch
-rw-r--r--ydb/library/yql/providers/common/proto/gateways_config.proto2
1 files changed, 2 insertions, 0 deletions
diff --git a/ydb/library/yql/providers/common/proto/gateways_config.proto b/ydb/library/yql/providers/common/proto/gateways_config.proto
index b99eddc42d9..a785aeae292 100644
--- a/ydb/library/yql/providers/common/proto/gateways_config.proto
+++ b/ydb/library/yql/providers/common/proto/gateways_config.proto
@@ -456,10 +456,12 @@ message TPostgresqlClusterConfig {
optional string Cluster = 2;
optional string PGtoken = 3;
optional string TargetServerType = 4;
+ optional uint64 MaxResultBufferSize = 5 [default = 1000000];
}
message TPostgresqlGatewayConfig {
repeated TPostgresqlClusterConfig ClusterMapping = 1;
+ optional uint64 MaxResultBufferSize = 2 [default = 1000000];
}
/////////////////////////////// Mysql /////////////////////////////