How to reset textinputformat.record.delimiter to its default value within hive cli / beeline?
Setting textinputformat.record.delimiter to a non-default value, is useful for loading multi-row text, as shown in the demo below. However, I'm failing to set this parameter back to its default value without exiting the cli and reopen it. None of the following options worked (nor some other trials) set textinputformat.record.delimiter='\n'; set textinputformat.record.delimiter='\r'; set textinputformat.record.delimiter='\r\n'; set textinputformat.record.delimiter=' '; reset; Any thought? Thanks Demo create table mytable (mycol string); insert into mytable select concat('Hello',unhex('A'),