Github user marmbrus commented on a diff in the pull request:
https://github.com/apache/spark/pull/999#discussion_r13520549
--- Diff: project/SparkBuild.scala ---
@@ -486,9 +486,23 @@ object SparkBuild extends Build {
def sqlCoreSettings = sharedSettings ++ Seq(
name := "spark-sql",
libraryDependencies ++= Seq(
- "com.twitter" % "parquet-column" % parquetVersion,
- "com.twitter" % "parquet-hadoop" % parquetVersion
- )
+ "com.twitter" % "parquet-column" %
parquetVersion,
+ "com.twitter" % "parquet-hadoop" %
parquetVersion,
+ "com.fasterxml.jackson.core" % "jackson-core" %
"2.3.2"
+ ),
+ initialCommands in console :=
+ """
+ |import org.apache.spark.sql.catalyst.analysis._
--- End diff --
If the console is primarily for developers then I find it pretty useful to
have all the sorts of things I'd want for debugging in scope. This is how
hive/console is already.
---
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.
---