869870871872873874875876877878879
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
958959960961962963964965966967968
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
180181182183184185186187188189190
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.
10461047104810491050105110521053105410551056
11371138113911401141114211431144114511461147
216217218219220221222223224225226