File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ overhead/cost of a full RDBMS or signing up for a data warehouse platform
25
25
(SQLite is included with python and requires no installation)
26
26
27
27
SQLite can be surprisingly fast, despite the query optimizer not being as
28
- sophisticated as other databases and data warehouse platforms. Tip: realize
28
+ sophisticated as other databases and data warehouse platforms. Tip: materialize
29
29
your models as tables and create indexes in post-hooks to speed up filtering
30
30
and joins.
31
31
@@ -77,7 +77,7 @@ dbt_sqlite:
77
77
schema_directory : ' /my_project/data'
78
78
79
79
# optional: semi-colon separated list of file paths for SQLite extensions to load.
80
- # crypto.so is needed to provide for snapshots to work; see README
80
+ # crypto.so is needed for snapshots to work; see README
81
81
extensions :
82
82
- " /path/to/sqlean/crypto.so"
83
83
@@ -120,9 +120,6 @@ backup-and-swap-in functionality work properly. Given how SQLite aggressively
120
120
[ locks] ( https://sqlite.org/lockingv3.html ) the database anyway, it's probably
121
121
not worth the effort.
122
122
123
- - This has been developed on Ubuntu 20.04, Python 3.8.5 (with sqlite 3.31.1),
124
- dbt 0.18.1. It's largely untested elsewhere.
125
-
126
123
## SQLite Extensions
127
124
128
125
For snapshots to work, you'll need the ` crypto ` module from SQLean to get an ` md5() `
You can’t perform that action at this time.
0 commit comments