select ... from pragma_function_list()

Refs https://github.com/simonw/sqlite-utils/pull/654#issuecomment-2860898278
This commit is contained in:
Simon Willison 2025-05-07 17:23:29 -07:00
commit acdbd8c42b

View file

@ -54,7 +54,7 @@ def test_prepare_connection():
return [
row[0]
for row in db.execute(
"select distinct name from pragma_function_list order by 1"
"select distinct name from pragma_function_list() order by 1"
).fetchall()
]