Skip to content

Commit f24d9fe

Browse files
committed
SNOW-2296280: update show print
1 parent 425443c commit f24d9fe

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/snowflake/snowpark/functions.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11075,11 +11075,11 @@ def interval_day_time_from_parts(
1107511075
>>> _ = session.sql("ALTER SESSION SET FEATURE_INTERVAL_TYPES=ENABLED;").collect()
1107611076
>>> df = session.create_dataframe([[1, 12, 30, 01.001001]], ['day', 'hour', 'min', 'sec'])
1107711077
>>> df.select(interval_day_time_from_parts(col("day"), col("hour"), col("min"), col("sec")).alias("interval")).show()
11078-
------------------
11079-
|"INTERVAL" |
11080-
------------------
11081-
|1 12:30:01.001 |
11082-
------------------
11078+
--------------------------
11079+
|"INTERVAL" |
11080+
--------------------------
11081+
|1 day, 12:30:01.001000 |
11082+
--------------------------
1108311083
<BLANKLINE>
1108411084

1108511085
"""

0 commit comments

Comments
 (0)