Saving all output to "!!{outputDirectory}!!/input49.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/input49.q >>> create table intable (b boolean, d double, f float, i int, l bigint, s string, t tinyint); No rows affected >>> insert overwrite table intable select 0, 29098519.0, 1410.0, 996, 40408519555, "test_string", 12 from src limit 1; '_col0','_col1','_col2','_col3','_col4','_col5','_col6' No rows selected >>> select * from intable where d in (29098519.0) and f in (1410.0) and i in (996) and l in (40408519555) and s in ('test_string') and t in (12); 'b','d','f','i','l','s','t' 'false','2.9098519E7','1410.0','996','40408519555','test_string','12' 1 row selected >>> drop table intable; No rows affected >>> !record