trait ParserInterface extends AnyRef
Interface for a parser.
- Annotations
- @DeveloperApi()
- Alphabetic
- By Inheritance
- ParserInterface
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Abstract Value Members
- abstract def parseDataType(sqlText: String): DataType
Parse a string to a DataType.
Parse a string to a DataType.
- Annotations
- @throws("Text cannot be parsed to a DataType")
- abstract def parseExpression(sqlText: String): Expression
Parse a string to an Expression.
Parse a string to an Expression.
- Annotations
- @throws("Text cannot be parsed to an Expression")
- abstract def parseFunctionIdentifier(sqlText: String): FunctionIdentifier
Parse a string to a FunctionIdentifier.
Parse a string to a FunctionIdentifier.
- Annotations
- @throws("Text cannot be parsed to a FunctionIdentifier")
- abstract def parseMultipartIdentifier(sqlText: String): Seq[String]
Parse a string to a multi-part identifier.
Parse a string to a multi-part identifier.
- Annotations
- @throws("Text cannot be parsed to a multi-part identifier")
- abstract def parsePlan(sqlText: String): LogicalPlan
Parse a string to a LogicalPlan.
Parse a string to a LogicalPlan.
- Annotations
- @throws("Text cannot be parsed to a LogicalPlan")
- abstract def parseQuery(sqlText: String): LogicalPlan
Parse a query string to a LogicalPlan.
Parse a query string to a LogicalPlan.
- Annotations
- @throws("Text cannot be parsed to a LogicalPlan")
- abstract def parseTableIdentifier(sqlText: String): TableIdentifier
Parse a string to a TableIdentifier.
Parse a string to a TableIdentifier.
- Annotations
- @throws("Text cannot be parsed to a TableIdentifier")
- abstract def parseTableSchema(sqlText: String): StructType
Parse a string to a StructType.
Parse a string to a StructType. The passed SQL string should be a comma separated list of field definitions which will preserve the correct Hive metadata.
- Annotations
- @throws("Text cannot be parsed to a schema")
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()