explain how to specify a keyspace

This commit is contained in:
Jonathan Ellis 2014-05-28 11:51:21 +02:00
parent 5d40dffabe
commit b59ae73cf2
1 changed files with 1 additions and 1 deletions

View File

@ -158,7 +158,7 @@ public class ClientState
public String getKeyspace() throws InvalidRequestException
{
if (keyspace == null)
throw new InvalidRequestException("no keyspace has been specified");
throw new InvalidRequestException("No keyspace has been specified. USE a keyspace, or explicity specify keyspace.tablename");
return keyspace;
}