Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -216,6 +216,8 @@ case class Substring(str: Expression, pos: Expression, len: Expression) extends

type EvaluatedType = Any

override def foldable = str.foldable && pos.foldable && len.foldable

def nullable: Boolean = str.nullable || pos.nullable || len.nullable
def dataType: DataType = {
if (!resolved) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,12 @@ class ConstantFoldingSuite extends PlanTest {
Like(Literal(null, StringType), "abc") as 'c13,
Like("abc", Literal(null, StringType)) as 'c14,

Upper(Literal(null, StringType)) as 'c15)
Upper(Literal(null, StringType)) as 'c15,

Substring(Literal(null, StringType), 0, 1) as 'c16,
Substring("abc", Literal(null, IntegerType), 1) as 'c17,
Substring("abc", 0, Literal(null, IntegerType)) as 'c18
)

val optimized = Optimize(originalQuery.analyze)

Expand All @@ -228,8 +233,12 @@ class ConstantFoldingSuite extends PlanTest {
Literal(null, BooleanType) as 'c13,
Literal(null, BooleanType) as 'c14,

Literal(null, StringType) as 'c15)
.analyze
Literal(null, StringType) as 'c15,

Literal(null, StringType) as 'c16,
Literal(null, StringType) as 'c17,
Literal(null, StringType) as 'c18
).analyze

comparePlans(optimized, correctAnswer)
}
Expand Down