Github user chenerlu commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1037#discussion_r122151896
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/dataload/TestGlobalSortDataLoad.scala
---
@@ -280,12 +280,13 @@ class TestGlobalSortDataLoad extends QueryTest with
BeforeAndAfterEach with Befo
test("Test with different date types") {
val path = s"$projectPath/examples/spark2/src/main/resources/data.csv"
+ sql("DROP TABLE IF EXISTS carbon_localsort_difftypes")
sql(
s"""
| CREATE TABLE carbon_localsort_difftypes(
- | shortField SHORT,
+ | shortField smallint,
| intField INT,
- | bigintField LONG,
+ | bigintField bigint,
--- End diff --
bigint -> BIGINT
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---