From dae6e0aaba370909b8c0146fa0ec4dd91d509a1d Mon Sep 17 00:00:00 2001 From: Marius Grama Date: Tue, 25 Jul 2023 11:07:36 +0200 Subject: [PATCH] Use correct value for `partition_values` argument in `drop_stats` sample --- docs/src/main/sphinx/connector/hive.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/main/sphinx/connector/hive.rst b/docs/src/main/sphinx/connector/hive.rst index 6611185f8af5..d738c282f127 100644 --- a/docs/src/main/sphinx/connector/hive.rst +++ b/docs/src/main/sphinx/connector/hive.rst @@ -763,7 +763,7 @@ Drop stats for a partition of the ``page_views`` table:: CALL system.drop_stats( schema_name => 'web', table_name => 'page_views', - partition_values => ARRAY['2016-08-09', 'US']); + partition_values => ARRAY[ARRAY['2016-08-09', 'US']]); .. _hive-procedures: