You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[pos][native] Fix unit testing setup for pos native tests
Makes below changes to ensure pos native tests run correctly
- Configure the test runner - PrestoSparkRunner - to use hive-admin identity
so that we are compliant with sql-standard access control.
Without this, the query result assertions will fail with ACL errors
- Temporarily duplicated utility function 0 HiveTestUtils.getProperty
to circumvent instantiation of HiveTestUtils class instantiation issues.
To be fixed in a separate PR
if (environmentVariableValue != null && !systemPropertyValue.equals(environmentVariableValue)) {
228
+
thrownewIllegalArgumentException(format("%s is set in both Java system property and environment variable, but their values are different. The Java system property value is %s, while the" +
229
+
" environment variable value is %s. Please use only one value.",
0 commit comments