diff --git a/python/hsfs/engine/python.py b/python/hsfs/engine/python.py index 93e57318bb..b78c192ca8 100644 --- a/python/hsfs/engine/python.py +++ b/python/hsfs/engine/python.py @@ -534,7 +534,7 @@ def register_hudi_temporary_table( or hudi_fg_alias.left_feature_group_start_timestamp is not None ): raise FeatureStoreException( - "Incremental queries not supported in the python client." + "Incremental queries are not supported in the python client." + " Read feature group without timestamp to retrieve latest snapshot or switch to " + "environment with Spark Engine." ) diff --git a/python/tests/engine/test_python.py b/python/tests/engine/test_python.py index 74bfbeaf08..ad892a23f9 100644 --- a/python/tests/engine/test_python.py +++ b/python/tests/engine/test_python.py @@ -859,7 +859,7 @@ def test_register_hudi_temporary_table_time_travel(self): # Assert assert str(e_info.value) == ( - "Incremental queries not supported in the python client." + "Incremental queries are not supported in the python client." + " Read feature group without timestamp to retrieve latest snapshot or switch to " + "environment with Spark Engine." ) @@ -893,7 +893,7 @@ def test_register_hudi_temporary_table_time_travel_sub_query(self): # Assert assert str(e_info.value) == ( - "Incremental queries not supported in the python client." + "Incremental queries are not supported in the python client." + " Read feature group without timestamp to retrieve latest snapshot or switch to " + "environment with Spark Engine." )