Subject: | 1.26 + adds table aliases to the sth NAME field |
SELECT A.name FROM TABLE A
print $sth->{NAME};
In 1.26 and later, yields "A.name"
In 1.15 yields "name"
I'm guessing this is intentional (allowing SELECT A.name, B.name, etc)
but it doesn't really get a callout in the CHANGES file.