Ian
03/28/2023, 5:40 AMschema": {
"date": {
"data_type": "string",
"partition_column": true,
"nullable": false
},
"shift": {
"data_type": "string",
"partition_column": false,
"nullable": false
}
}
*the above is the schema of the table that we have created but when using deltaTable.sc*hema() it gives the below schema
schema": {
"date": {
"data_type": "string",
"partition_column": true,
"nullable": true
},
"shift": {
"data_type": "string",
"partition_column": false,
"nullable": true
}
}
nullable is returned true when we have set it to false
we are using spark to create the delta tablertyler
03/28/2023, 5:46 AMIan
03/28/2023, 6:05 AMrtyler
03/28/2023, 6:05 AMIan
03/28/2023, 6:06 AMrtyler
03/28/2023, 6:09 AM