Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scalardb-analytics-sample/docker/Dockerfile.spark
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM eclipse-temurin:17-jre-jammy

ENV SPARK_VERSION=3.5.6 \
ENV SPARK_VERSION=3.5.7 \
HADOOP_VERSION=3 \
SPARK_HOME=/opt/spark \
PATH="/opt/spark/bin:/opt/spark/sbin:${PATH}" \
Expand Down
5 changes: 3 additions & 2 deletions scalardb-analytics-sample/sql/postgres_copy.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
create table customer (
create schema if not exists sample_ns;
create table sample_ns.customer (
c_custkey int,
c_name text,
c_address text,
Expand All @@ -9,4 +10,4 @@ create table customer (
c_comment text,
PRIMARY KEY (c_custkey)
);
\copy customer from '/opt/customer.csv' delimiter ',' csv;
\copy sample_ns.customer from '/opt/customer.csv' delimiter ',' csv;