aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora-romanov <Anton.Romanov@ydb.tech>2022-08-10 11:29:11 +0300
committera-romanov <Anton.Romanov@ydb.tech>2022-08-10 11:29:11 +0300
commit8f8e9623fadfcabfcf733e9d51a9a5fb0c7175d2 (patch)
tree9819f958e4e512f150d9e27ce0e9ed1f9ec359ce
parent9ee1ce1f6aa9c9364082aa7d9b9f5234ceac9757 (diff)
downloadydb-8f8e9623fadfcabfcf733e9d51a9a5fb0c7175d2.tar.gz
DQ support S3 sink/source.
-rw-r--r--ydb/library/yql/providers/dq/provider/yql_dq_recapture.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/providers/dq/provider/yql_dq_recapture.cpp b/ydb/library/yql/providers/dq/provider/yql_dq_recapture.cpp
index 3c625dd11d..cf7c7aaf2d 100644
--- a/ydb/library/yql/providers/dq/provider/yql_dq_recapture.cpp
+++ b/ydb/library/yql/providers/dq/provider/yql_dq_recapture.cpp
@@ -22,8 +22,8 @@ using namespace NNodes;
namespace {
-const THashSet<TStringBuf> VALID_SOURCES = {DqProviderName, ConfigProviderName, YtProviderName, ClickHouseProviderName, YdbProviderName};
-const THashSet<TStringBuf> VALID_SINKS = {ResultProviderName, YtProviderName};
+const THashSet<TStringBuf> VALID_SOURCES = {DqProviderName, ConfigProviderName, YtProviderName, ClickHouseProviderName, YdbProviderName, S3ProviderName};
+const THashSet<TStringBuf> VALID_SINKS = {ResultProviderName, YtProviderName, S3ProviderName};
const THashSet<TStringBuf> UNSUPPORTED_CALLABLE = { TCoForwardList::CallableName() };
}