Skip to content

Commit

Permalink
Try to fix sorting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
roed314 committed Sep 29, 2023
1 parent 05e9602 commit 3320366
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lmfdb/api/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def split_db(tablename):
'indexSize':mb(sizes['index_bytes']), 'dataSize':mb(sizes['table_bytes'] + sizes['toast_bytes'] + sizes['extras_bytes']),
'countsSize':mb(sizes['counts_bytes']), 'statsSize':mb(sizes['stats_bytes']),
'nrows': sizes['nrows'], 'nstats': sizes['nstats'], 'ncounts': sizes['ncounts'],
'tablespace': tablespaces[tablename],
'tablespace': tablespaces.get(tablename, ""),
}
dataSize = size - indexSize
info['ntables'] = len(table_sizes)
Expand Down

0 comments on commit 3320366

Please sign in to comment.