You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hive.apache.org by Edward Capriolo <ed...@gmail.com> on 2015/04/07 21:25:15 UTC

hive-jdbc do set commands work on the connection or statement level

I am setting compression variables in multiple statements
conn.createStatement().execute("set compression.type=5=snappy");
conn.createStatement().execute("select into X ...");

Does the set statement set a connection level variable or a statement level
variable? Or are things set in other ways?

TX