mirror of
https://github.com/simonw/datasette.git
synced 2025-12-10 16:51:24 +01:00
Don't try to show row counts for views
Also handle tables/views with spaces in their name in the URL.
This commit is contained in:
parent
bd5f3b2ba1
commit
2fe94641b0
1 changed files with 2 additions and 1 deletions
3
app.py
3
app.py
|
|
@ -183,6 +183,7 @@ class TableView(BaseView):
|
|||
|
||||
def data(self, request, name, hash, table):
|
||||
conn = get_conn(name)
|
||||
table = urllib.parse.unquote_plus(table)
|
||||
if request.args:
|
||||
where_clause, params = build_where_clause(request.args)
|
||||
sql = 'select * from "{}" where {} limit 50'.format(
|
||||
|
|
@ -196,7 +197,7 @@ class TableView(BaseView):
|
|||
pks = pks_for_table(conn, table)
|
||||
rows = list(rows)
|
||||
info = ensure_build_metadata()
|
||||
total_rows = info[name]['tables'][table]
|
||||
total_rows = info[name]['tables'].get(table)
|
||||
return {
|
||||
'database': name,
|
||||
'table': table,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue