Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,12 +333,16 @@ print("✓ Exported to lineage.json, columns.csv, lineage.dot")

**Output:**
```
📊 Propagating metadata for 6 columns...
📊 Pass 1: Propagating metadata backward from 6 output columns...
📊 Pass 2: Propagating metadata forward for 6 columns...
✅ Done! Propagated metadata for 6 columns
Found 2 PII columns:
Found 3 PII columns:
ColumnNode('raw.orders.user_email')
Owner: data-team
Tags: contact, sensitive
ColumnNode('source.orders.user_email')
Owner: data-team
Tags: contact, sensitive
ColumnNode('analytics.revenue.user_email')
Owner: data-team
Tags: contact, sensitive
Expand Down Expand Up @@ -524,7 +528,7 @@ Tool: trace_backward
Sources: 1 columns
Tool: trace_forward
Tool: search_columns
Found: 2 matches
Found: 3 matches
```

**Supported question types:**
Expand Down Expand Up @@ -667,11 +671,11 @@ print(f"PII columns: {result.message}")

**Output:**
```
Tables: ['raw.orders', 'staging.orders', 'analytics.revenue']
Columns: ['customer_email', 'total']
Tables: ['analytics.revenue', 'raw.orders', 'staging.orders']
Columns: [{'name': 'customer_email'}, {'name': 'total'}]
Sources: Column analytics.revenue.total is derived from: raw.orders.amount
Impacts: Column raw.orders.amount impacts: analytics.revenue.total
Matches: Found 2 columns matching 'email'
Matches: Found 3 columns matching 'email'
PII columns: No PII columns found
```

Expand Down