@polyglot-sql/sdk 0.4.2 → 0.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +5 -0
- package/dist/cdn/polyglot.esm.js +1468 -1468
- package/dist/index.cjs +61 -61
- package/dist/index.d.cts +33 -0
- package/dist/index.d.ts +33 -0
- package/dist/index.js +65 -65
- package/dist/index.node.js +61 -61
- package/dist/manual.js +65 -65
- package/dist/polyglot_sql.wasm +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -561,6 +561,11 @@ if (tables.success) {
|
|
|
561
561
|
}
|
|
562
562
|
```
|
|
563
563
|
|
|
564
|
+
Lineage nodes include `source_kind` and optional `source_alias` metadata. Table
|
|
565
|
+
columns are marked as `table`, CTEs as `cte`, derived queries as
|
|
566
|
+
`derived_table`, and virtual sources such as BigQuery `UNNEST(...) AS alias`
|
|
567
|
+
are marked as `virtual`.
|
|
568
|
+
|
|
564
569
|
## OpenLineage Output
|
|
565
570
|
|
|
566
571
|
Generate OpenLineage-compatible JSON payloads from SQL analysis. The SDK only
|