Function: HqlService.hql_exec
HqlResult hql_exec(string command,
bool noflush = 0,
bool unbuffered = 0)
throws Client.ClientException
Execute an HQL command
@param command - HQL command
@param noflush - Do not auto commit any modifications (return a mutator)
@param unbuffered - return a scanner instead of buffered results
Function: HqlService.hql_query
HqlResult hql_query(string command)
throws Client.ClientException
Convenience method for executing an buffered and flushed query
because thrift doesn't (and probably won't) support default argument values
@param command - HQL command