-
Notifications
You must be signed in to change notification settings - Fork 208
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add csv badges back in Quickstart (#418)
* fix: csv badges back in quickstart Signed-off-by: jornh <[email protected]> * Adding noqa C901 because test breaks if I split code Signed-off-by: jornh <[email protected]> * mypy Signed-off-by: jornh <[email protected]> * cleanup Signed-off-by: jornh <[email protected]> * test CsvTableColumnExtractor Signed-off-by: jornh <[email protected]> * test CsvTableColumnExtractor Signed-off-by: jornh <[email protected]> * Back out table level badges Signed-off-by: jornh <[email protected]> * Update example/sample_data/sample_col.csv Signed-off-by: jornh <[email protected]> * always have caller send a list of badge names Signed-off-by: jornh <[email protected]> * back out unrelated Signed-off-by: jornh <[email protected]> * back out unrelated CASE change in test Signed-off-by: jornh <[email protected]> * __eq__ stricter typing the mypy way Signed-off-by: jornh <[email protected]>
- Loading branch information
Showing
6 changed files
with
83 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
name,description,col_type,sort_order,database,cluster,schema,table_name | ||
col1,"col1 description","string",1,hive,gold,test_schema,test_table1 | ||
col2,"col2 description","string",2,hive,gold,test_schema,test_table1 | ||
col3,"col3 description","string",3,hive,gold,test_schema,test_table1 | ||
col4,"col4 description","string",4,hive,gold,test_schema,test_table1 | ||
col5,"col5 description","float",5,hive,gold,test_schema,test_table1 | ||
col1,"col1 description","string",1,dynamo,gold,test_schema,test_table2 | ||
col2,"col2 description","string",2,dynamo,gold,test_schema,test_table2 | ||
col3,"col3 description","string",3,dynamo,gold,test_schema,test_table2 | ||
col4,"col4 description","int",4,dynamo,gold,test_schema,test_table2 | ||
col1,"view col description","int",1,hive,gold,test_schema,test_view1 | ||
col1,"col1 description","int",1,hive,gold,test_schema,test_table3 | ||
name,description,col_type,sort_order,database,cluster,schema,table_name,badges | ||
col1,"col1 description","string",1,hive,gold,test_schema,test_table1,PK | ||
col2,"col2 description","string",2,hive,gold,test_schema,test_table1,PII | ||
col3,"col3 description","string",3,hive,gold,test_schema,test_table1, | ||
col4,"col4 description","string",4,hive,gold,test_schema,test_table1, | ||
col5,"col5 description","float",5,hive,gold,test_schema,test_table1, | ||
col1,"col1 description","string",1,dynamo,gold,test_schema,test_table2, | ||
col2,"col2 description","string",2,dynamo,gold,test_schema,test_table2, | ||
col3,"col3 description","string",3,dynamo,gold,test_schema,test_table2, | ||
col4,"col4 description","int",4,dynamo,gold,test_schema,test_table2, | ||
col1,"view col description","int",1,hive,gold,test_schema,test_view1, | ||
col1,"col1 description","int",1,hive,gold,test_schema,test_table3, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
database,cluster,schema,name,description,tags,is_view,description_source | ||
hive,gold,test_schema,test_table1,"1st test table","tag1,tag2,pii,high_quality",false, | ||
dynamo,gold,test_schema,test_table2,"2nd test table","high_quality,recommended",false, | ||
hive,gold,test_schema,test_table1,"1st test table","tag1,tag2",false, | ||
dynamo,gold,test_schema,test_table2,"2nd test table",recommended,false, | ||
hive,gold,test_schema,test_view1,"1st test view","tag1",true, | ||
hive,gold,test_schema,test_table3,"3rd test","needs_documentation",false, | ||
hive,gold,test_schema,"test's_table4","4th test","needs_documentation",false, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters