Skip to content

Commit

Permalink
uncomment tests
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed May 28, 2024
1 parent ce0d82e commit a014192
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class CometExpressionCoverageSuite extends CometTestBase with AdaptiveSparkPlanH
// Tests to run manually as its syntax is different from usual or nested
val manualTests: Map[String, (String, String)] = Map(
"!" -> ("select true a", "select ! true from tbl"),
"%" -> ("select 1 a, 2 b", "select a + b from tbl"),
"%" -> ("select 1 a, 2 b", "select a % b from tbl"),
"&" -> ("select 1 a, 2 b", "select a & b from tbl"),
"*" -> ("select 1 a, 2 b", "select a * b from tbl"),
"+" -> ("select 1 a, 2 b", "select a + b from tbl"),
Expand Down

0 comments on commit a014192

Please sign in to comment.