Skip to content

Commit 3587460

Browse files
committed
Drop unused string builder function.
1 parent 9cce346 commit 3587460

File tree

1 file changed

+0
-11
lines changed
  • sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions

1 file changed

+0
-11
lines changed

sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions/Row.scala

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -88,15 +88,6 @@ trait MutableRow extends Row {
8888
def setByte(ordinal: Int, value: Byte)
8989
def setFloat(ordinal: Int, value: Float)
9090
def setString(ordinal: Int, value: String)
91-
92-
/**
93-
* Experimental
94-
*
95-
* Returns a mutable string builder for the specified column. A given row should return the
96-
* result of any mutations made to the returned buffer next time getString is called for the same
97-
* column.
98-
*/
99-
def getStringBuilder(ordinal: Int): StringBuilder
10091
}
10192

10293
/**
@@ -216,8 +207,6 @@ class GenericMutableRow(size: Int) extends GenericRow(size) with MutableRow {
216207
/** No-arg constructor for serialization. */
217208
def this() = this(0)
218209

219-
def getStringBuilder(ordinal: Int): StringBuilder = ???
220-
221210
override def setBoolean(ordinal: Int,value: Boolean): Unit = { values(ordinal) = value }
222211
override def setByte(ordinal: Int,value: Byte): Unit = { values(ordinal) = value }
223212
override def setDouble(ordinal: Int,value: Double): Unit = { values(ordinal) = value }

0 commit comments

Comments
 (0)