Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chz test5
  • Loading branch information
Cazen committed Dec 28, 2015
commit c757fe88275285efe3650e33de2f1340ea8581ef
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,6 @@ class JsonParsingOptionsSuite extends QueryTest with SharedSQLContext {
val df = sqlContext.read.option("allowBackslashEscapingAnyCharacter", "true").json(rdd)

assert(df.schema.head.name == "name")
assert(df.schema.head.name == "Cazen Lee")
assert(df.first().getString(0) == "Cazen Lee")
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

should we also test the price field?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You right. It needeed
I'll modify test code soon
Thz

}
}