Skip to content

Commit 8180018

Browse files
committed
fix: doc-string
1 parent 3a6e03a commit 8180018

File tree

1 file changed

+15
-8
lines changed

1 file changed

+15
-8
lines changed

python/pyspark/sql/functions/builtin.py

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25295,25 +25295,32 @@ def try_make_timestamp_ntz(
2529525295
----------
2529625296
yearsOrDate : :class:`~pyspark.sql.Column` or column name
2529725297
Either:
25298-
- The year to represent, from 1 to 9999;
25299-
for timsetamp creation based on year, month, day, hour, minute and second.
25300-
- The date to represent, in valid DATE format;
25301-
for timsetamp creation based on date and time.
25298+
25299+
- The year to represent, from 1 to 9999;
25300+
for timsetamp creation based on year, month, day, hour, minute and second.
25301+
- The date to represent, in valid DATE format;
25302+
for timsetamp creation based on date and time.
25303+
2530225304
monthsOrTime : :class:`~pyspark.sql.Column` or column name
2530325305
Either:
25304-
- The month-of-year to represent, from 1 (January) to 12 (December);
25305-
for timsetamp creation based on year, month, day, hour, minute and second.
25306-
- The time to represent, in valid TIME format;
25307-
for timsetamp creation based on date and time.
25306+
25307+
- The month-of-year to represent, from 1 (January) to 12 (December);
25308+
for timsetamp creation based on year, month, day, hour, minute and second.
25309+
- The time to represent, in valid TIME format;
25310+
for timsetamp creation based on date and time.
25311+
2530825312
days : :class:`~pyspark.sql.Column` or column name, optional
2530925313
The day-of-month to represent, from 1 to 31;
2531025314
only used for timsetamp creation based on year, month, day, hour, minute and second.
25315+
2531125316
hours : :class:`~pyspark.sql.Column` or column name, optional
2531225317
The hour-of-day to represent, from 0 to 23;
2531325318
only used for timsetamp creation based on year, month, day, hour, minute and second.
25319+
2531425320
mins : :class:`~pyspark.sql.Column` or column name, optional
2531525321
The minute-of-hour to represent, from 0 to 59;
2531625322
only used for timsetamp creation based on year, month, day, hour, minute and second.
25323+
2531725324
secs : :class:`~pyspark.sql.Column` or column name, optional
2531825325
The second-of-minute and its micro-fraction to represent, from 0 to 60.
2531925326
The value can be either an integer like 13 , or a fraction like 13.123.

0 commit comments

Comments
 (0)