Skip to content

Commit 00dfe76

Browse files
committed
added test case for 13
1 parent 6388aea commit 00dfe76

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/main/scala/edu/berkeley/cs/rise/opaque/benchmark/TPCHBenchmark.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import org.apache.spark.sql.SQLContext
2424
object TPCHBenchmark {
2525

2626
// Add query numbers here once they are supported
27-
val supportedQueries = Seq(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 17, 19, 20, 22)
27+
val supportedQueries = Seq(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 17, 19, 20, 22)
2828

2929
def query(queryNumber: Int, tpch: TPCH, sqlContext: SQLContext, numPartitions: Int) = {
3030
val sqlStr = tpch.getQuery(queryNumber)

src/main/scala/edu/berkeley/cs/rise/opaque/execution/operators.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ case class EncryptedFilterExec(condition: Expression, child: SparkPlan)
234234
case class EncryptedAggregateExec(
235235
groupingExpressions: Seq[NamedExpression],
236236
aggExpressions: Seq[AggregateExpression],
237-
// Specify mode if ALL aggExpressions should be cast to the desired AggregateMode
237+
// Specify mode if ALL aggExpressions should be cast to the provided AggregateMode
238238
mode: Option[AggregateMode],
239239
child: SparkPlan)
240240
extends UnaryExecNode with OpaqueOperatorExec {

0 commit comments

Comments
 (0)