959960961962963964965966967968969
sink.appendLong(456); sink.appendDouble(98.1); sink.appendBoolean(false); sink.finishRecord(); String fragment = sink.commit(); // commit the table metadata.commitCreateTable(outputHandle, ImmutableList.of(fragment)); // load the new table
853854855856857858859860861862863
944945946947948949950951952953954
854855856857858859860861862863864
sink.beginRecord(7); sink.appendLong(4); sink.finishRecord(); String fragment = sink.commit(); // commit the table metadata.commitCreateTable(outputHandle, ImmutableList.of(fragment)); // load the new table
175176177178179180181182183184185
sink.beginRecord(1); sink.appendLong(2); sink.finishRecord(); String fragment = sink.commit(); // commit the table client.commitCreateTable(outputHandle, ImmutableList.of(fragment)); // Hack to work around the metastore not being configured for S3.
870871872873874875876877878879880
181182183184185186187188189190191
934935936937938939940941942943944
10231024102510261027102810291030103110321033