From 12aa20235a5f4c25a47ecdb5c8c015c201049e5e Mon Sep 17 00:00:00 2001 From: Steve Burnett Date: Tue, 16 Apr 2024 10:57:59 -0400 Subject: [PATCH] Fix formatting in Hive Connector Procedures doc --- .../src/main/sphinx/connector/hive.rst | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/presto-docs/src/main/sphinx/connector/hive.rst b/presto-docs/src/main/sphinx/connector/hive.rst index 092b54bd13a96..adaa599ca4d34 100644 --- a/presto-docs/src/main/sphinx/connector/hive.rst +++ b/presto-docs/src/main/sphinx/connector/hive.rst @@ -840,28 +840,28 @@ The following procedures are available: * ``system.create_empty_partition(schema_name, table_name, partition_columns, partition_values)`` - Create an empty partition in the specified table. + Create an empty partition in the specified table. * ``system.sync_partition_metadata(schema_name, table_name, mode, case_sensitive)`` - Check and update partitions list in metastore. There are three modes available: + Check and update partitions list in metastore. There are three modes available: - * ``ADD`` : add any partitions that exist on the file system but not in the metastore. - * ``DROP``: drop any partitions that exist in the metastore but not on the file system. - * ``FULL``: perform both ``ADD`` and ``DROP``. + * ``ADD`` : add any partitions that exist on the file system but not in the metastore. + * ``DROP``: drop any partitions that exist in the metastore but not on the file system. + * ``FULL``: perform both ``ADD`` and ``DROP``. - The ``case_sensitive`` argument is optional. The default value is ``true`` for compatibility - with Hive's ``MSCK REPAIR TABLE`` behavior, which expects the partition column names in - file system paths to use lowercase (e.g. ``col_x=SomeValue``). Partitions on the file system - not conforming to this convention are ignored, unless the argument is set to ``false``. + The ``case_sensitive`` argument is optional. The default value is ``true`` for compatibility + with Hive's ``MSCK REPAIR TABLE`` behavior, which expects the partition column names in + file system paths to use lowercase (e.g. ``col_x=SomeValue``). Partitions on the file system + not conforming to this convention are ignored, unless the argument is set to ``false``. * ``system.invalidate_directory_list_cache()`` - Flush full directory list cache. + Flush full directory list cache. * ``system.invalidate_directory_list_cache(directory_path)`` - Invalidate directory list cache for specified directory_path. + Invalidate directory list cache for specified directory_path. Extra Hidden Columns --------------------