Update pyspark.md

This commit is contained in:
Ted Vilutis
2026-02-17 09:21:37 -08:00
parent e00ee4d094
commit 3f9e9b085e

View File

@@ -131,6 +131,8 @@ VACUUM silver_transactions
-- Vacuum with custom retention
VACUUM silver_transactions RETAIN 168 HOURS
```
### Incremental Load Pattern
```python
@@ -184,4 +186,4 @@ spark.sql("""
true as is_current
FROM staging_customer
""")
```
```