Saving all output to "!!{outputDirectory}!!/input_part4.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/input_part4.q >>> EXPLAIN SELECT x.* FROM SRCPART x WHERE x.ds = '2008-04-08' and x.hr = 15; 'Explain' 'ABSTRACT SYNTAX TREE:' ' (TOK_QUERY (TOK_FROM (TOK_TABREF (TOK_TABNAME SRCPART) x)) (TOK_INSERT (TOK_DESTINATION (TOK_DIR TOK_TMP_FILE)) (TOK_SELECT (TOK_SELEXPR (TOK_ALLCOLREF (TOK_TABNAME x)))) (TOK_WHERE (and (= (. (TOK_TABLE_OR_COL x) ds) '2008-04-08') (= (. (TOK_TABLE_OR_COL x) hr) 15)))))' '' 'STAGE DEPENDENCIES:' ' Stage-0 is a root stage' '' 'STAGE PLANS:' ' Stage: Stage-0' ' Fetch Operator' ' limit: -1' ' Processor Tree:' ' TableScan' ' alias: x' ' Filter Operator' ' predicate:' ' expr: ((ds = '2008-04-08') and (hr = 15.0))' ' type: boolean' ' Select Operator' ' expressions:' ' expr: key' ' type: string' ' expr: value' ' type: string' ' expr: ds' ' type: string' ' expr: hr' ' type: string' ' outputColumnNames: _col0, _col1, _col2, _col3' ' ListSink' '' '' 31 rows selected >>> >>> SELECT x.* FROM SRCPART x WHERE x.ds = '2008-04-08' and x.hr = 15; 'key','value','ds','hr' No rows selected >>> !record