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
2525(SQLite is included with python and requires no installation)
2626
2727SQLite 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
2929your models as tables and create indexes in post-hooks to speed up filtering
3030and joins.
3131
@@ -77,7 +77,7 @@ dbt_sqlite:
7777 schema_directory : ' /my_project/data'
7878
7979 # 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
8181 extensions :
8282 - " /path/to/sqlean/crypto.so"
8383
@@ -120,9 +120,6 @@ backup-and-swap-in functionality work properly. Given how SQLite aggressively
120120[ locks] ( https://sqlite.org/lockingv3.html ) the database anyway, it's probably
121121not worth the effort.
122122
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-
126123## SQLite Extensions
127124
128125For 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