Skip to content
Snippets Groups Projects
Commit d39f5dd1 authored by Matei Zaharia's avatar Matei Zaharia
Browse files

Merge remote branch 'origin/custom-serialization' into new-rdds

parents 8b6f3db4 4f0d0a7b
No related branches found
No related tags found
No related merge requests found
......@@ -118,6 +118,7 @@ class KryoSerialization extends SerializationStrategy with Logging {
val toRegister: Seq[AnyRef] = Seq(
// Arrays
Array(1), Array(1.0), Array(1.0f), Array(1L), Array(""), Array(("", "")),
Array(new java.lang.Object),
// Specialized Tuple2s
("", ""), (1, 1), (1.0, 1.0), (1L, 1L),
(1, 1.0), (1.0, 1), (1L, 1.0), (1.0, 1L), (1, 1L), (1L, 1),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment