Skip to content

Commit

Permalink
removed unused fields, updated test
Browse files Browse the repository at this point in the history
  • Loading branch information
KushnirykOleh committed Oct 16, 2024
1 parent f17c657 commit f1bf332
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@
public class TableSnapshotGeneratorDatabricks extends TableSnapshotGenerator {

private static final String LOCATION = "Location";
private static final String TYPE = "Type";
private static final String EXTERNAL = "EXTERNAL";
private static final String TABLE_PROPERTIES = "Table Properties";
private static final String TBL_PROPERTIES = "tblProperties";
private static final String DETAILED_TABLE_INFORMATION_NODE = "# Detailed Table Information";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
{
"table": {
"name": "test_table_properties",
"tblProperties" : "delta.checkpoint.writeStatsAsJson=false,delta.checkpoint.writeStatsAsStruct=true,delta.enableDeletionVectors=true,delta.feature.deletionVectors=supported,delta.feature.invariants=supported,delta.minReaderVersion=3,delta.minWriterVersion=7,external.location=s3://mybucket/mytable,this.is.my.key=12,this.is.my.key2=true"
"Location" : "s3://databricks-th/test_table_properties",
"tblProperties" : "delta.checkpoint.writeStatsAsJson=false,delta.checkpoint.writeStatsAsStruct=true,delta.enableDeletionVectors=true,delta.feature.deletionVectors=supported,delta.feature.invariants=supported,delta.minReaderVersion=3,delta.minWriterVersion=7,this.is.my.key=12,this.is.my.key2=true"
}
}
],
Expand Down

0 comments on commit f1bf332

Please sign in to comment.