CC: | jpirzyk [...] akamai.com |
Subject: | parsing error with using sub-selects |
Given this simplified SQL statement:
SELECT *
FROM (
SELECT machineip,
location
FROM machinedetails
WHERE network="foo"
)
fails with this error:
Bad table or column name: '(SELECT' has chars not alphanumeric or underscore! at $INSTALLDIR/SQL/Statement.pm line 90
Now reading the BUGS and LIMITATIONS section I see this:
Some SQL commands/features are not supported (most of them cannot by design), as LOCK TABLE, using indices, sub-selects etc.
Currently the statement for missing features is: I plan to create
a SQL::Statement v2.00 based on a pure Backus-Naur-Form parser ...
So my question is how is v2.00 going and is there an estimated release date?