You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
= {.description = R"(The table function can be used to read the DeltaLake table stored on object store in parallel for many nodes in a specified cluster.)",
194
194
.examples{{DeltaLakeClusterDefinition::name, "SELECT * FROM deltaLakeCluster(cluster, url, access_key_id, secret_access_key)", ""}},
= {.description = R"(The table function can be used to read the DeltaLake table stored on object store in parallel for many nodes in a specified cluster.)",
201
+
.examples{{DeltaLakeS3ClusterDefinition::name, "SELECT * FROM deltaLakeS3Cluster(cluster, url, access_key_id, secret_access_key)", ""}},
= {.description = R"(The table function can be used to read the DeltaLake table stored on object store in parallel for many nodes in a specified cluster.)",
210
+
.examples{{DeltaLakeAzureClusterDefinition::name, "SELECT * FROM deltaLakeAzureCluster(cluster, url, access_key_id, secret_access_key)", ""}},
using TableFunctionDeltaLakeClusterFallback = TableFunctionObjectStorageClusterFallback<DeltaLakeClusterFallbackDefinition, TableFunctionDeltaLakeCluster>;
182
+
using TableFunctionDeltaLakeS3ClusterFallback = TableFunctionObjectStorageClusterFallback<DeltaLakeS3ClusterFallbackDefinition, TableFunctionDeltaLakeS3Cluster>;
using TableFunctionDeltaLakeAzureClusterFallback = TableFunctionObjectStorageClusterFallback<DeltaLakeAzureClusterFallbackDefinition, TableFunctionDeltaLakeAzureCluster>;
168
187
#endif
169
188
170
189
#if USE_AWS_S3
@@ -337,7 +356,8 @@ void registerTableFunctionObjectStorageClusterFallback(TableFunctionFactory & fa
.description=R"(The table function can be used to read the DeltaLake table stored on object store in parallel for many nodes in a specified cluster or from single node.)",
385
+
.examples{
386
+
{
387
+
"deltaLakeS3",
388
+
"SELECT * FROM deltaLakeS3(url, access_key_id, secret_access_key)", ""
389
+
},
390
+
{
391
+
"deltaLakeS3",
392
+
"SELECT * FROM deltaLakeS3(url, access_key_id, secret_access_key) "
.description=R"(The table function can be used to read the DeltaLake table stored on object store in parallel for many nodes in a specified cluster or from single node.)",
407
+
.examples{
408
+
{
409
+
"deltaLakeAzure",
410
+
"SELECT * FROM deltaLakeAzure(url, access_key_id, secret_access_key)", ""
411
+
},
412
+
{
413
+
"deltaLakeAzure",
414
+
"SELECT * FROM deltaLakeAzure(url, access_key_id, secret_access_key) "
0 commit comments