Skip to content

Commit

Permalink
update upstream and downstream parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
sqlparser committed Dec 8, 2024
1 parent efa9f64 commit f91c0f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/dlineage/merge_csv.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ source_db, source_schema, source_table, source_column, target_db, target_schema,
### 3.3. Query the data lineage from duckdb

```
/query_dlineage_downstream <job_name> <source_db> <source_schema> <source_table> <source_column> /csv <output_csv_file>
/query_dlineage_downstream <job_name> [source_db.][source_schema.]<source_table>.<source_column> /csv <output_csv_file>
```
This will query the downstream data lineage of the column `[source_db.][source_schema.]<source_table>.<source_column>` in the dlineage job `<job_name>`.
The output is a csv file, each line of which is a downstream data lineage of the column `[source_db.][source_schema.]<source_table>.<source_column>`.
Expand All @@ -132,7 +132,7 @@ source_db, source_schema, source_table, source_column, target_db, target_schema,


```
/query_dlineage_upstream <job_name> <target_db> <target_schema> <target_table> <target_column> /csv <output_csv_file>
/query_dlineage_upstream <job_name> [target_db.][target_schema.]<target_table>.<target_column> /csv <output_csv_file>
```
This will query the upstream data lineage of the column `[target_db.][target_schema.]<target_table>.<target_column>` in the dlineage job `<job_name>`.
The output is a csv file, each line of which is a upstream data lineage of the column `[target_db.][target_schema.]<target_table>.<target_column>`.
Expand Down

0 comments on commit f91c0f3

Please sign in to comment.