From 981a2f7718875dbde101b3f3d941f9b50aabbda6 Mon Sep 17 00:00:00 2001 From: houpy829 Date: Tue, 3 Dec 2013 01:23:49 -0600 Subject: [PATCH] Update rowcount.pig --- scripts/rowcount.pig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/rowcount.pig b/scripts/rowcount.pig index 398cc93..185c091 100644 --- a/scripts/rowcount.pig +++ b/scripts/rowcount.pig @@ -1,6 +1,6 @@ %default CF account - +%For LOAD command, 'cassandra:///' -- This script simply gets a row count of the given column family rows = LOAD 'cassandra://pygmalion/$CF' USING CassandraStorage(); counted = foreach (group rows all) generate COUNT($1); -dump counted; \ No newline at end of file +dump counted;