Skip to content

Commit

Permalink
fix bug in catalyst
Browse files Browse the repository at this point in the history
  • Loading branch information
jackylk committed Jan 3, 2015
1 parent 005c56d commit 9bf4cc7
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,14 +25,14 @@ import org.apache.spark.sql.catalyst.rules._
import org.apache.spark.sql.catalyst.types.StructType
import org.apache.spark.sql.catalyst.types.IntegerType
import org.apache.spark.sql.catalyst.CatalystConf
import org.apache.spark.sql.catalyst.EmptyConf
import org.apache.spark.sql.catalyst.test.SimpleConf

/**
* A trivial [[Analyzer]] with an [[EmptyCatalog]] and [[EmptyFunctionRegistry]]. Used for testing
* when all relations are already filled in and the analyser needs only to resolve attribute
* references.
*/
object SimpleAnalyzer extends Analyzer(EmptyCatalog, EmptyFunctionRegistry, EmptyConf)
object SimpleAnalyzer extends Analyzer(EmptyCatalog, EmptyFunctionRegistry, new SimpleConf)

/**
* Provides a logical query plan analyzer, which translates [[UnresolvedAttribute]]s and
Expand Down

0 comments on commit 9bf4cc7

Please sign in to comment.