You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by "Jakob Homan (Jira)" <ji...@apache.org> on 2019/09/13 22:52:00 UTC

[jira] [Created] (AIRFLOW-5492) Missing docstring for hive .py

Jakob Homan created AIRFLOW-5492:
------------------------------------

             Summary: Missing docstring for hive .py
                 Key: AIRFLOW-5492
                 URL: https://issues.apache.org/jira/browse/AIRFLOW-5492
             Project: Apache Airflow
          Issue Type: Bug
          Components: utils
    Affects Versions: 1.10.6
            Reporter: Jakob Homan


Note: This ticket's being created to facilitate a new contributor's workshop for Airflow. After the workshop has completed, I'll mark these all available for anyone that might like to take them on.

We need to add doc_strings for both {{schema}} and {{metastore_conn_id}}

airflow/macros/hive.py:83
{code:java}
def closest_ds_partition(
        table, ds, before=True, schema="default",
        metastore_conn_id='metastore_default'):
    """
    This function finds the date in a list closest to the target date.
    An optional parameter can be given to get the closest before or after.

    :param table: A hive table name
    :type table: str
    :param ds: A datestamp ``%Y-%m-%d`` e.g. ``yyyy-mm-dd``
    :type ds: list[datetime.date]
    :param before: closest before (True), after (False) or either side of ds
    :type before: bool or None
    :returns: The closest date
    :rtype: str or None {code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)