You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sql/3_load_profiles.sql
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -87,6 +87,7 @@ select
87
87
n_tup_ins as"INSERTed",
88
88
n_tup_del as"DELETEd",
89
89
n_tup_upd as"UPDATEd",
90
-
round(100* upd_hot_ratio, 2) as"HOT-updated, %"
90
+
round(100* upd_hot_ratio, 2) as"HOT-updated, %",
91
+
case when seq_tup_read + coalesce(idx_tup_fetch, 0) >0 then round(100* seq_tup_read::numeric/ (seq_tup_read + coalesce(idx_tup_fetch, 0)), 2) else 0 end as"SeqScan, %"
0 commit comments