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 c0fc896 commit 888ea50Copy full SHA for 888ea50
1 file changed
tests/templates/kuttl/iceberg-hive/70-check-iceberg-tables.yaml.j2
@@ -2,20 +2,20 @@
2
apiVersion: batch/v1
3
kind: Job
4
metadata:
5
- name: check-lakehouse-tables
+ name: check-iceberg-tables
6
spec:
7
template:
8
9
containers:
10
- - name: check-lakehouse-tables
+ - name: check-iceberg-tables
11
image: "oci.stackable.tech/sdp/trino-cli:{{ test_scenario['values']['trino-l'] }}-stackable0.0.0-dev"
12
command:
13
- bash
14
- -euo
15
- pipefail
16
- -c
17
- |
18
- for SCHEMA in lakehouse.test; do
+ for SCHEMA in iceberg.s3 iceberg.hdfs; do
19
COUNT=$(cat << EOF | ./trino-cli --server https://trino-coordinator:8443 --insecure --user admin
20
SELECT COUNT(*) FROM $SCHEMA.greetings WHERE hello = 'world from NiFi :)';
21
EOF
0 commit comments