mirror of
https://github.com/cldellow/sqlite-parquet-vtable.git
synced 2025-04-03 09:39:47 +00:00
Codec testing
This commit is contained in:
parent
6f058db523
commit
b0b76dbdd9
@ -1,7 +1,11 @@
|
|||||||
FROM ubuntu:16.04
|
FROM ubuntu:16.04
|
||||||
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config libsqlite3-dev libicu-dev gcc g++ meson
|
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config sqlite3 libsqlite3-dev libicu-dev gcc g++ meson
|
||||||
COPY ci/arrow-ubuntu16.04.list /etc/apt/sources.list.d/apache-arrow.list
|
COPY ci/arrow-ubuntu16.04.list /etc/apt/sources.list.d/apache-arrow.list
|
||||||
RUN curl https://dist.apache.org/repos/dist/dev/arrow/KEYS | apt-key add - && apt-get update && apt-get install -y libparquet-dev
|
RUN curl https://dist.apache.org/repos/dist/dev/arrow/KEYS | apt-key add - && apt-get update && apt-get install -y libparquet-dev
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY . /src
|
COPY . /src
|
||||||
RUN mkdir builddir && meson builddir && cd builddir && ninja
|
RUN mkdir builddir && meson builddir
|
||||||
|
WORKDIR builddir
|
||||||
|
RUN meson configure -Db_pgo=generate && ninja
|
||||||
|
RUN ninja test
|
||||||
|
RUN meson configure -Db_pgo=use && ninja
|
||||||
|
@ -1,7 +1,11 @@
|
|||||||
FROM ubuntu:18.04
|
FROM ubuntu:18.04
|
||||||
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config libsqlite3-dev libicu-dev gcc g++ meson
|
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg lsb-release pkg-config sqlite3 libsqlite3-dev libicu-dev gcc g++ meson
|
||||||
COPY ci/arrow-ubuntu18.04.list /etc/apt/sources.list.d/apache-arrow.list
|
COPY ci/arrow-ubuntu18.04.list /etc/apt/sources.list.d/apache-arrow.list
|
||||||
RUN curl -L -o /usr/share/keyrings/apache-arrow-keyring.gpg https://dl.bintray.com/apache/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-keyring.gpg && apt-get update && apt-get install -y libparquet-dev
|
RUN curl -L -o /usr/share/keyrings/apache-arrow-keyring.gpg https://dl.bintray.com/apache/arrow/$(lsb_release --id --short | tr 'A-Z' 'a-z')/apache-arrow-keyring.gpg && apt-get update && apt-get install -y libparquet-dev
|
||||||
WORKDIR /src
|
WORKDIR /src
|
||||||
COPY . /src
|
COPY . /src
|
||||||
RUN mkdir builddir && meson builddir && cd builddir && ninja
|
RUN mkdir builddir && meson builddir
|
||||||
|
WORKDIR builddir
|
||||||
|
RUN meson configure -Db_pgo=generate && ninja
|
||||||
|
RUN ninja test
|
||||||
|
RUN meson configure -Db_pgo=use && ninja
|
||||||
|
1
tests/segfault-safety/load-valid-file/results.codecs.txt
Normal file
1
tests/segfault-safety/load-valid-file/results.codecs.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
2016|5933845|3|105 Mile Post 2|||09999|IRI|5933845|01. Agriculture, agriculture operations and related sciences|1761||x|x|x
|
1
tests/segfault-safety/load-valid-file/results.nulls.txt
Normal file
1
tests/segfault-safety/load-valid-file/results.nulls.txt
Normal file
@ -0,0 +1 @@
|
|||||||
|
1|50|5000|50000000|50000000000|490665600000|99.0|0|000|||1.0
|
Loading…
x
Reference in New Issue
Block a user