Skip to content

Commit 99b6eb9

Browse files
committed
adjust for Analytics 3.17
1 parent 406809e commit 99b6eb9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

scalardb-analytics-sample/docker/Dockerfile.spark

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM eclipse-temurin:17-jre-jammy
22

3-
ENV SPARK_VERSION=3.5.6 \
3+
ENV SPARK_VERSION=3.5.7 \
44
HADOOP_VERSION=3 \
55
SPARK_HOME=/opt/spark \
66
PATH="/opt/spark/bin:/opt/spark/sbin:${PATH}" \

scalardb-analytics-sample/sql/postgres_copy.sql

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
create table customer (
1+
create schema if not exists sample_ns;
2+
create table sample_ns.customer (
23
c_custkey int,
34
c_name text,
45
c_address text,
@@ -9,4 +10,4 @@ create table customer (
910
c_comment text,
1011
PRIMARY KEY (c_custkey)
1112
);
12-
\copy customer from '/opt/customer.csv' delimiter ',' csv;
13+
\copy sample_ns.customer from '/opt/customer.csv' delimiter ',' csv;

0 commit comments

Comments
 (0)