Skip to content

Commit f9ff393

Browse files
committed
update readme
1 parent 081a745 commit f9ff393

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,13 @@ Things SQLittle can do:
3636
- hides all SQLite low level storage details
3737
- DESC indexes are handled automatically
3838
- Collate functions are used automatically
39+
- indexes with expression (either in columns or as a `WHERE`) are (partially) supported
3940
- Scan() to most Go datatypes, including `time.Time`
4041
```
4142

4243
Things SQLittle should do:
4344

4445
```
45-
- the table and index definitions SQL parser is not finished enough
4646
- add a helper to find indexes. That would be especially useful for the `sqlite_autoindex_...` indexes
4747
- optimize loading when all requested columns are available in the index
4848
- expose the locking so you can do bigger read transactions
@@ -56,7 +56,6 @@ Things SQLittle can not do:
5656
- no joins
5757
- WAL files are not supported
5858
- indexes are used for sorting, but there is no on-the-fly sorting
59-
- indexes with expression (either in columns or as a `WHERE`) are not supported
6059
```
6160

6261
## Locks

doc.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ Things SQLittle can do:
4343
- hides all SQLite low level storage details
4444
- DESC indexes are handled automatically
4545
- Collate functions are used automatically
46+
- indexes with expression (either in columns or as a `WHERE`) are (partially) supported
4647
- Scan() to most Go datatypes, including `time.Time`
4748
4849
Things SQLittle should do:
4950
50-
- the table and index definitions SQL parser is not finished enough
5151
- add a helper to find indexes. That would be especially useful for the `sqlite_autoindex_...` indexes
5252
- optimize loading when all requested columns are available in the index
5353
- expose the locking so you can do bigger read transactions
@@ -60,7 +60,6 @@ Things SQLittle can not do:
6060
- no joins
6161
- WAL files are not supported
6262
- indexes are used for sorting, but there is no on-the-fly sorting
63-
- indexes with expression (either in columns or as a `WHERE`) are not supported
6463
6564
6665
Locks

0 commit comments

Comments
 (0)