|
16 | 16 |
|
17 | 17 | package net.snowflake.spark.snowflake
|
18 | 18 |
|
19 |
| -import java.sql.Timestamp |
| 19 | +import java.sql.{SQLException, Timestamp} |
20 | 20 | import java.text.{DateFormat, SimpleDateFormat}
|
21 |
| - |
22 | 21 | import org.apache.spark.sql.{Row, SaveMode}
|
23 | 22 | import net.snowflake.spark.snowflake.Utils.SNOWFLAKE_SOURCE_NAME
|
24 | 23 | import net.snowflake.spark.snowflake.Utils.SNOWFLAKE_SOURCE_SHORT_NAME
|
25 | 24 | import org.apache.spark.sql.functions._
|
26 |
| -import org.apache.spark.sql.types.{DateType, TimestampType} |
| 25 | +import org.apache.spark.sql.types.{DateType, StringType, StructField, StructType, TimestampType} |
27 | 26 |
|
28 | 27 | /**
|
29 | 28 | * Created by mzukowski on 8/12/16.
|
@@ -98,6 +97,50 @@ class DataTypesIntegrationSuite extends IntegrationSuiteBase {
|
98 | 97 | )
|
99 | 98 | }
|
100 | 99 |
|
| 100 | + test("change timestamp format") { |
| 101 | + jdbcUpdate(s"CREATE OR REPLACE TABLE $test_table (START_TIME TIMESTAMP)") |
| 102 | + |
| 103 | + val spark = sparkSession |
| 104 | + import spark.implicits._ |
| 105 | + |
| 106 | + val df1 = Seq("2023-11-28 10:23:59.123456").toDF() |
| 107 | + df1.write.format(SNOWFLAKE_SOURCE_NAME) |
| 108 | + .options(connectorOptionsNoTable).option("dbtable", test_table) |
| 109 | + .option(Parameters.PARAM_STRING_TIMESTAMP_FORMAT, "YYYY-MM-DD HH24:MI:SS.FF9") |
| 110 | + .mode(SaveMode.Append).save() |
| 111 | + |
| 112 | + val df = sparkSession.read.format(SNOWFLAKE_SOURCE_NAME) |
| 113 | + .options(connectorOptionsNoTable).option("dbtable", test_table).load() |
| 114 | + assert(df.collect().head.getTimestamp(0).toString.startsWith("2023-11-28 10:23:59.123")) |
| 115 | + |
| 116 | + // it doesn't work if source dataframe has timestamp column |
| 117 | + val dateFormat: DateFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss.SSS") |
| 118 | + val time: Timestamp = |
| 119 | + new Timestamp(dateFormat.parse("28/10/1996 00:00:00.000").getTime) |
| 120 | + |
| 121 | + val data = sc.parallelize(Seq( |
| 122 | + Row(time, "2023-11-28 10:23:59.123456") |
| 123 | + )) |
| 124 | + |
| 125 | + val schema = new StructType( |
| 126 | + Array( |
| 127 | + StructField("time", TimestampType), |
| 128 | + StructField("str", StringType) |
| 129 | + ) |
| 130 | + ) |
| 131 | + |
| 132 | + jdbcUpdate(s"CREATE OR REPLACE TABLE $test_table (START_TIME TIMESTAMP, END_TIME TIMESTAMP)") |
| 133 | + |
| 134 | + val df2 = sparkSession.createDataFrame(data, schema) |
| 135 | + |
| 136 | + assertThrows[SQLException]{ |
| 137 | + df2.write.format(SNOWFLAKE_SOURCE_NAME).options(connectorOptionsNoTable) |
| 138 | + .options(connectorOptionsNoTable).option("dbtable", test_table) |
| 139 | + .option(Parameters.PARAM_STRING_TIMESTAMP_FORMAT, "YYYY-MM-DD HH24:MI:SS.FF9") |
| 140 | + .mode(SaveMode.Append).save() |
| 141 | + } |
| 142 | + } |
| 143 | + |
101 | 144 | test("insert timestamp into date") {
|
102 | 145 | jdbcUpdate(s"create or replace table $test_table(i date)")
|
103 | 146 |
|
|
0 commit comments