Skip to content

Commit 0b412be

Browse files
committed
minor edits
1 parent 1a50b21 commit 0b412be

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

README.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff 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

2727
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
2929
your models as tables and create indexes in post-hooks to speed up filtering
3030
and 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
121121
not 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

128125
For snapshots to work, you'll need the `crypto` module from SQLean to get an `md5()`

0 commit comments

Comments
 (0)