diff options
author | amikish <amikish@yandex-team.com> | 2023-10-20 12:36:43 +0300 |
---|---|---|
committer | amikish <amikish@yandex-team.com> | 2023-10-20 13:46:31 +0300 |
commit | a01b56c670ad27264e82d324860bfcd23a0a8ed6 (patch) | |
tree | d43062960aecbefac52b04c6380f52d6547f2a4d | |
parent | ec14079d276bb214a8eea218f5f130c8ba1ca7fa (diff) | |
download | ydb-a01b56c670ad27264e82d324860bfcd23a0a8ed6.tar.gz |
Adaptive fetch
-rw-r--r-- | ydb/library/yql/providers/common/proto/gateways_config.proto | 2 |
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 ///////////////////////////// |