RE: comment out hive script file

2011-07-07 Thread Satoshi Yamada
nks,satoshi --- On Mon, 2011/7/4, Travis Powell wrote: RE: comment out hive script file Comments cannot be the first line of a file, if I recall correctly. The way that I put my name and email at the top is after a using statement for the database. use default; -- John Doe,

RE: comment out hive script file

2011-07-03 Thread Travis Powell
) 488-7160 -Original Message- From: Satoshi Yamada [mailto:bigtvioletb...@yahoo.co.jp] Sent: Sunday, July 03, 2011 04:32 AM Pacific Standard Time To: user@hive.apache.org Subject:Re: comment out hive script file Thanks, Edward, and sorry for late reply. I want to add comment

Re: comment out hive script file

2011-07-03 Thread Satoshi Yamada
Thanks, Edward, and sorry for late reply. I want to add comment in the file using with "hive -f". $ cat sample_select.hql -- some commentSELECT something FROM sample_table; $ hive -f sample_select.hql Sample above does not work. Either "#" or "/* */" doesnot work. So, is there no way to add comment

Re: comment out hive script file

2011-06-29 Thread Edward Capriolo
There is a subtle nuance, comments can only appear before QL statements not set or add commands. Edward On Wed, Jun 29, 2011 at 8:36 AM, Satoshi Yamada wrote: > hi, > > Is there any way to comment out hive script file? > > Either "--" or "/* */" does not seem to work. > > Thanks in advance, > sa