mirror of
https://github.com/apache/impala.git
synced 2026-01-10 09:00:16 -05:00
This fails for the same reason as the sequence writer. It passes locally but fails in zlib on the jenkins boxes. I suspect something is wrong with our gzip codec or the version of zlib installed on those machines (we've disabled this for parquet as well). Change-Id: I706186fbb6207fa694b4e61c7114e17c1ffe3482 Reviewed-on: http://gerrit.sjc.cloudera.com:8080/4221 Reviewed-by: Alex Behm <alex.behm@cloudera.com> Tested-by: Nong Li <nong@cloudera.com> Reviewed-on: http://gerrit.sjc.cloudera.com:8080/4260 Reviewed-by: Nong Li <nong@cloudera.com>
37 lines
661 B
Plaintext
37 lines
661 B
Plaintext
====
|
|
---- QUERY
|
|
drop table if exists __text_write;
|
|
====
|
|
---- QUERY
|
|
create table __text_write (i int, s string, d double);
|
|
====
|
|
---- QUERY
|
|
SET COMPRESSION_CODEC=NONE;
|
|
insert into __text_write select 0, "a", 1.1;
|
|
====
|
|
---- QUERY
|
|
SET COMPRESSION_CODEC=DEFAULT;
|
|
insert into __text_write values (1, "b", 2.2);
|
|
====
|
|
---- QUERY
|
|
SET COMPRESSION_CODEC=SNAPPY;
|
|
insert into __text_write values (2, "c", 3.3);
|
|
====
|
|
---- QUERY
|
|
SET COMPRESSION_CODEC=GZIP;
|
|
insert into __text_write values (3, "d", 4.4);
|
|
====
|
|
---- QUERY
|
|
select * from __text_write;
|
|
---- RESULTS
|
|
0,'a',1.1
|
|
1,'b',2.2
|
|
2,'c',3.3
|
|
3,'d',4.4
|
|
---- TYPES
|
|
INT,STRING,DOUBLE
|
|
====
|
|
---- QUERY
|
|
drop table __text_write;
|
|
====
|