Topic: systypes.inc error?

Is there something wrong in Line 34 of includes/systypes.inc ?

    $sql = "SELECT max(last_no) last_no FROM ($sql1 UNION $sql2) a";

Should it not be (inserted AS):

    $sql = "SELECT max(last_no) AS last_no FROM ($sql1 UNION $sql2) a";

Re: systypes.inc error?

I can agree that it looks better with AS, but it is not needed in mysql.

/Joe