While writing the data to a pre-existing table in the unity catalog using JDBC. it just writes the Delta of the data. Driver used: com.databricks:databricks-jdbc:2.6.36Lets say I have the table has rows:+-+-+
|a|b|
+-+-+
|1|2|
|3|4| and I am appendi...
This is my code here. df = spark.createDataFrame([[1,1,2]], schema=['id','first_name','last_name'])(df.write.format("jdbc") .option("url", <jdbc-url>) .option("dbtable","hive_metastore.default.test") .option("driver", "com.databricks.clien...