Leandro Guimarães Faria Corcete DUTRA wrote:
> Em Fri, 15 Dec 2006 11:09:06 -0600, Chris Hilton escreveu:
> 
>> The Parse::RecDescent docs.
> 
>       Very interesting indeed, and enlightening.
> 
>       Now the issue is that, as you said, the current expreßion seems OK.
> 
>       I tried to debug, but I couldn’t find how to set a breakpoint or
> watch to my error, and it is simply too much to step through the code.  Any
> tips?

I just tried this and saw the same error. In my case it's easy to see
why. The version of SQL::Translator I have installed doesn't have any
code to handle it:

  table_option : 'DEFAULT CHARSET' /\s*=\s*/ WORD
    {
        $return = { $item[1] => $item[3] };
    }
    | WORD /\s*=\s*/ WORD
    {
        $return = { $item[1] => $item[3] };
    }

You might want to double-check which version is actually running (add a
warn statement at the beginning?) to eliminate this possibility :)

Cheers, Dave

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
-- 
sqlfairy-developers mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sqlfairy-developers

Reply via email to