snowflakedb / snowpark-java-scala

Snowflake Snowpark Java & Scala API
Apache License 2.0
18 stars 20 forks source link

SNOW-1567577: Can't Insert only Subset of Columns to Table #131

Open EshwarHilabs opened 1 month ago

EshwarHilabs commented 1 month ago

In normal SQL if i have a table with 5 columns I could still insert only 3 columns but here through Dataframe before insertion a call to DESCRIBE TABLE is made where the columns are matched and this sort of insertion fails, the dataframe approach requires all 5 columns to be specified

Is there any solution to this problem