-# we don't really need to do this join, since we only want
-# one row from buildsystems. but it means we only have to run one
-# query. If it gets heavy we'll split it up and run two
-
-my $statement = <<EOS;
-
- select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago,
- sysname, snapshot, b.status, stage,
- operating_system, os_version, compiler, compiler_version, architecture,
- owner_email
- from buildsystems s,
- build_status b
- where name = ?
- and branch = ?
- and s.status = 'approved'
- and name = sysname
- order by snapshot desc
- limit $hm
-
-EOS
+my $latest_personality = $db->selectrow_arrayref(q{
+ select os_version, compiler_version
+ from personality
+ where name = ?
+ order by effective_date desc limit 1
+ }, undef, $member);
+
+my $systemdata = q{
+ select operating_system, os_version, compiler, compiler_version, architecture,
+ owner_email, sys_notes_ts::date AS sys_notes_date, sys_notes
+ from buildsystems b
+ where b.status = 'approved'
+ and name = ?
+};
+
+my $statement = qq{
+ with x as
+ ( select *
+ from build_status_recent_500
+ where sysname = ?
+ and branch = ?
+ )
+ select (now() at time zone 'GMT')::timestamp(0) - snapshot as when_ago,
+ sysname, snapshot, status, stage
+ from x
+ order by snapshot desc
+ limit $hm
+}