Skip to content

Commit 49968f6

Browse files
authored
Update documentation for Data Vault version references
Corrected mentions of Data Vault 2.0 to Data Vault 2 in the documentation.
1 parent 8b0024f commit 49968f6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88

99
`datavault4sqlglot` is a Python library that ports the logic and functionality of the popular [`datavault4dbt`](https://github.com/ScalefreeCOM/datavault4dbt) package into a standalone, pure-Python solution.
1010

11-
It leverages **sqlglot** to generate syntactically correct, dialect-agnostic SQL for Data Vault 2.0 entities — making DV automation available to the wider Python ecosystem, not just dbt users.
11+
It leverages **sqlglot** to generate syntactically correct, dialect-agnostic SQL for Data Vault 2 entities — making DV automation available to the wider Python ecosystem, not just dbt users.
1212

1313
### Goal & Vision
1414

1515
**Key Objectives:**
1616
- **Expansion**: Enable use cases like standalone ETL scripts, dynamic SQL generation in Airflow/Dagster, or custom platform integrations.
17-
- **Parity**: Replicate core Data Vault 2.0 patterns (Hubs, Links, Satellites) and advanced features (incremental loading, ghost records, multisource support).
17+
- **Parity**: Replicate core Data Vault 2 patterns (Hubs, Links, Satellites) and advanced features (incremental loading, ghost records, multisource support).
1818

1919
### Scope
2020

@@ -40,7 +40,7 @@ It leverages **sqlglot** to generate syntactically correct, dialect-agnostic SQL
4040

4141
**Data Flow:**
4242
1. **Input**: Typed metadata describing source tables, columns, and business keys (Pydantic models or typed dicts).
43-
2. **Processing**: The `Generator` class applies DV 2.0 patterns and incremental logic (HWM) to build a sqlglot expression tree.
43+
2. **Processing**: The `Generator` class applies DV 2 patterns and incremental logic (HWM) to build a sqlglot expression tree.
4444
3. **Output**: A SQL string (compiled for the target dialect) or a sqlglot expression object for further manipulation.
4545

4646
**Conceptual usage example:**

0 commit comments

Comments
 (0)