forked from datastax/spark-cassandra-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#133 Changes from PR and scala api docs updated.
- Loading branch information
Helena Edelson
committed
Aug 7, 2014
1 parent
22dd434
commit 8c0202f
Showing
6 changed files
with
30 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 7 additions & 1 deletion
8
...-cassandra-connector/src/main/scala/com/datastax/spark/connector/rdd/ColumnSelector.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,13 @@ | ||
package com.datastax.spark.connector.rdd | ||
|
||
private[connector] trait ColumnSelector | ||
sealed trait ColumnSelector | ||
case object AllColumns extends ColumnSelector | ||
case class SomeColumns(columns: String*) extends ColumnSelector | ||
|
||
object SomeColumns { | ||
@deprecated("Use com.datastax.spark.connector.rdd.SomeColumns instead of Seq", "1.0") | ||
implicit def seqToSomeColumns(columns: Seq[String]): SomeColumns = | ||
SomeColumns(columns: _*) | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters