On Wed, Feb 22, 2012 at 2:56 AM, chethan <[email protected]> wrote:
>        pigServer.registerQuery("REGISTER " + inputFile + ";");

Add single quotes around the inputFile?:

```
pigServer.registerQuery("REGISTER '" + inputFile + "';");
```

Reply via email to