mirror of
https://github.com/simonw/datasette.git
synced 2026-09-20 07:24:18 +02:00
Fix tests I just broke
This commit is contained in:
parent
aaf00e9ec2
commit
2785fd29de
3 changed files with 65 additions and 37 deletions
|
|
@ -16,7 +16,7 @@ _cached_sqlite_version = None
|
|||
SQLiteTableType = Literal["table", "view", "virtual", "shadow"]
|
||||
_VIRTUAL_TABLE_MODULE_RE = re.compile(
|
||||
r"\bCREATE\s+VIRTUAL\s+TABLE\b.*?\bUSING\s+([^\s(]+)",
|
||||
re.IGNORECASE,
|
||||
re.IGNORECASE | re.DOTALL,
|
||||
)
|
||||
_VIRTUAL_TABLE_SHADOW_SUFFIXES = {
|
||||
"fts3": ("_content", "_segdir", "_segments", "_stat", "_docsize"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue