Saving all output to "!!{outputDirectory}!!/describe_formatted_view_partitioned.q.raw". Enter "record" with no arguments to stop it. >>> !run !!{qFileDirectory}!!/describe_formatted_view_partitioned.q >>> DROP VIEW view_partitioned; No rows affected >>> >>> CREATE VIEW view_partitioned PARTITIONED ON (value) AS SELECT key, value FROM src WHERE key=86; 'key','value' No rows selected >>> >>> ALTER VIEW view_partitioned ADD PARTITION (value='val_86'); No rows affected >>> >>> DESCRIBE FORMATTED view_partitioned PARTITION (value='val_86'); 'col_name','data_type','comment' '# col_name ','data_type ','comment ' '','','' 'key ','string ','None ' '','','' '# Partition Information','','' '# col_name ','data_type ','comment ' '','','' 'value ','string ','None ' '','','' '# Detailed Partition Information','','' 'Partition Value: ','[val_86] ','' 'Database: ','describe_formatted_view_partitioned','' 'Table: ','view_partitioned ','' 'CreateTime: ','!!TIMESTAMP!!','' 'LastAccessTime: ','UNKNOWN ','' 'Protect Mode: ','None ','' 'Location: ','null ','' 'Partition Parameters:','','' '','transient_lastDdlTime','!!UNIXTIME!! ' 19 rows selected >>> >>> DROP VIEW view_partitioned; No rows affected >>> !record