Skip to content

Commit

Permalink
Remove duplicated description
Browse files Browse the repository at this point in the history
  • Loading branch information
sbuldeev committed Jul 5, 2023
1 parent 973aa7c commit e51195e
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions projects/vdk-plugins/vdk-impala/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,6 @@ For example
job_input.execute_query("select 'Hi Impala!'")
```

Example:
```python
def run(job_input: IJobInput) -> None:

def check(tmp_table_name):
result = #Implement your data quality check logic and return True/False
return result

job_input.execute_template(
template_name="load/dimension/scd1",
"source_schema": test_schema,
"source_view": source_view,
"target_schema": test_schema,
"target_table": target_table,
"check": check,
"staging_schema": staging_schema, #If not provided the checks would be performed in the target_schema
)
```

### Lineage

The package can gather lineage data for all successful Impala SQL queries that have actually read or written data.
Expand Down

0 comments on commit e51195e

Please sign in to comment.