Skip to content

Commit

Permalink
feat: Add support for Hive 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernauer committed Aug 28, 2024
1 parent 26ef5a6 commit 7f8e76b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ data:

# S3 access
try:
hive_client.create_table(table(database_name, s3_test_table_name, "s3a://hive/"))
hive_client.create_table(table(database_name, s3_test_table_name, "s3a://hive/s3_one_column_table/"))
except AlreadyExistsException:
print(f"[INFO]: Table {s3_test_table_name} already existed")
print("[DEBUG]: Fetching schema")
Expand Down
2 changes: 1 addition & 1 deletion tests/templates/kuttl/smoke/test_metastore.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ def table(db_name, table_name, location):
# S3 access
try:
hive_client.create_table(
table(database_name, s3_test_table_name, "s3a://hive/")
table(database_name, s3_test_table_name, "s3a://hive/s3_one_column_table/")
)
except AlreadyExistsException:
print(f"[INFO]: Table {s3_test_table_name} already existed")
Expand Down
4 changes: 2 additions & 2 deletions tests/test-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ dimensions:
- 3.1.3
# Alternatively, if you want to use a custom image, append a comma and the full image name to the product version
# as in the example below.
# - 3.1.3,docker.stackable.tech/sandbox/hive:3.1.3-stackable0.0.0-dev
- 4.0.0,docker.stackable.tech/sandbox/hive:4.0.0-stackable0.0.0-dev
- name: hive-latest
values:
- 3.1.3
# Alternatively, if you want to use a custom image, append a comma and the full image name to the product version
# as in the example below.
# - 3.1.3,docker.stackable.tech/sandbox/hive:3.1.3-stackable0.0.0-dev
- 4.0.0,docker.stackable.tech/sandbox/hive:4.0.0-stackable0.0.0-dev
- name: hdfs-latest
values:
- 3.3.6
Expand Down

0 comments on commit 7f8e76b

Please sign in to comment.