We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 406809e commit 99b6eb9Copy full SHA for 99b6eb9
scalardb-analytics-sample/docker/Dockerfile.spark
@@ -1,6 +1,6 @@
1
FROM eclipse-temurin:17-jre-jammy
2
3
-ENV SPARK_VERSION=3.5.6 \
+ENV SPARK_VERSION=3.5.7 \
4
HADOOP_VERSION=3 \
5
SPARK_HOME=/opt/spark \
6
PATH="/opt/spark/bin:/opt/spark/sbin:${PATH}" \
scalardb-analytics-sample/sql/postgres_copy.sql
@@ -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,
@@ -9,4 +10,4 @@ create table customer (
9
10
c_comment text,
11
PRIMARY KEY (c_custkey)
12
);
-\copy customer from '/opt/customer.csv' delimiter ',' csv;
13
+\copy sample_ns.customer from '/opt/customer.csv' delimiter ',' csv;
0 commit comments