Skip to content

Commit

Permalink
Reverts the changing of the development test
Browse files Browse the repository at this point in the history
  • Loading branch information
johnedquinn committed Feb 5, 2025
1 parent 7f0b848 commit 3eeb520
Showing 1 changed file with 6 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3740,16 +3740,13 @@ internal class PlanTyperTestsPorted {
}

@Test
// @Disabled
@Disabled
fun developmentTest() {
val tc =
ErrorTestCase(
name = "WITH not supported yet",
query = "WITH x AS (SELECT * FROM <<1, 2, 3>>) SELECT * FROM x",
problemHandler = assertProblemExists(
PErrors.featureNotSupported("WITH clause")
)
)
val tc = SuccessTestCase(
name = "DEV TEST",
query = "CAST('' AS STRING) < CAST('' AS SYMBOL);",
expected = PType.bool().toCType()
)
runTest(tc)
}

Expand Down

0 comments on commit 3eeb520

Please sign in to comment.