Change
Group By PatientRace
to
Group By GROUPING SETS ((PatientRace), ())
To get that row last in the result set, you need to change the ORDER BY clause to
ORDER BY grouping(PatientRace), "Count"
By the way, remove the DISTINCT from the SELECT list. It makes no sense when you already have GROUP BY.