Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ metadata:
name: trino
spec:
image:
{% if test_scenario['values']['trino-latest'].find(",") > 0 %}
custom: "{{ test_scenario['values']['trino-latest'].split(',')[1] }}"
productVersion: "{{ test_scenario['values']['trino-latest'].split(',')[0] }}"
{% if test_scenario['values']['trino'].find(",") > 0 %}
custom: "{{ test_scenario['values']['trino'].split(',')[1] }}"
productVersion: "{{ test_scenario['values']['trino'].split(',')[0] }}"
{% else %}
productVersion: "{{ test_scenario['values']['trino-latest'] }}"
productVersion: "{{ test_scenario['values']['trino'] }}"
{% endif %}
pullPolicy: IfNotPresent
clusterConfig:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,11 @@
{
"query": "SET SESSION iceberg.test=true",
# The requests are authorized, just a fake property
{% if test_scenario['values']['trino'] == '470' %}
"error": "Session property iceberg.test does not exist",
{% else %}
"error": "Session property 'iceberg.test' does not exist",
{% endif %}
},
# ## SCHEMA ##
# ExecuteQuery, AccessCatalog, ShowSchemas, SelectFromColumns, FilterCatalogs, FilterSchemas
Expand Down
2 changes: 1 addition & 1 deletion tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ tests:
- openshift
- name: opa-authorization
dimensions:
- trino-latest
- trino
- hive-latest
- opa
- keycloak
Expand Down