File tree Expand file tree Collapse file tree 1 file changed +0
-11
lines changed
sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/expressions Expand file tree Collapse file tree 1 file changed +0
-11
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments