Saving all output to "!!{outputDirectory}!!/input2_limit.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/input2_limit.q >>> EXPLAIN SELECT x.* FROM SRC x WHERE x.key < 300 LIMIT 5; 'Explain' 'ABSTRACT SYNTAX TREE:' ' (TOK_QUERY (TOK_FROM (TOK_TABREF (TOK_TABNAME SRC) x)) (TOK_INSERT (TOK_DESTINATION (TOK_DIR TOK_TMP_FILE)) (TOK_SELECT (TOK_SELEXPR (TOK_ALLCOLREF (TOK_TABNAME x)))) (TOK_WHERE (< (. (TOK_TABLE_OR_COL x) key) 300)) (TOK_LIMIT 5)))' '' 'STAGE DEPENDENCIES:' ' Stage-1 is a root stage' ' Stage-0 is a root stage' '' 'STAGE PLANS:' ' Stage: Stage-1' ' Map Reduce' ' Alias -> Map Operator Tree:' ' x ' ' TableScan' ' alias: x' ' Filter Operator' ' predicate:' ' expr: (key < 300.0)' ' type: boolean' ' Select Operator' ' expressions:' ' expr: key' ' type: string' ' expr: value' ' type: string' ' outputColumnNames: _col0, _col1' ' Limit' ' File Output Operator' ' compressed: false' ' GlobalTableId: 0' ' table:' ' input format: org.apache.hadoop.mapred.TextInputFormat' ' output format: org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat' '' ' Stage: Stage-0' ' Fetch Operator' ' limit: 5' '' '' 38 rows selected >>> >>> SELECT x.* FROM SRC x WHERE x.key < 300 LIMIT 5; 'key','value' '238','val_238' '86','val_86' '27','val_27' '165','val_165' '255','val_255' 5 rows selected >>> !record