Skip to content

Commit

Permalink
Workaround HADOOP-16180
Browse files Browse the repository at this point in the history
  • Loading branch information
wangyum committed Mar 12, 2019
1 parent 3b2e454 commit 4c1ec25
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions dev/run-tests
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,19 @@ locale
echo "##### test environment #####"
export

# Workaround HADOOP-16180
export LANG=en_US.UTF-8
export LC_CTYPE="en_US.UTF-8"
export LC_NUMERIC="en_US.UTF-8"
export LC_TIME="en_US.UTF-8"
export LC_COLLATE="en_US.UTF-8"
export LC_MONETARY="en_US.UTF-8"
export LC_MESSAGES="en_US.UTF-8"
export LC_PAPER="en_US.UTF-8"
export LC_NAME="en_US.UTF-8"
export LC_ADDRESS="en_US.UTF-8"
export LC_TELEPHONE="en_US.UTF-8"
export LC_MEASUREMENT="en_US.UTF-8"
export LC_IDENTIFICATION="en_US.UTF-8"

exec python -u ./dev/run-tests.py "$@"
Original file line number Diff line number Diff line change
Expand Up @@ -2689,7 +2689,7 @@ abstract class DDLSuite extends QueryTest with SQLTestUtils {
}
}

ignore(s"basic DDL using locale tr - caseSensitive $caseSensitive") {
test(s"basic DDL using locale tr - caseSensitive $caseSensitive") {
withSQLConf(SQLConf.CASE_SENSITIVE.key -> s"$caseSensitive") {
withLocale("tr") {
val dbName = "DaTaBaSe_I"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ class HiveDDLSuite
}
}

ignore("create Hive-serde table and view with unicode columns and comment") {
test("create Hive-serde table and view with unicode columns and comment") {
val catalog = spark.sessionState.catalog
val tabName = "tab1"
val viewName = "view1"
Expand Down

0 comments on commit 4c1ec25

Please sign in to comment.