aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@csail.mit.edu>2017-03-09 13:01:05 -0500
committerGravatar GitHub <noreply@github.com>2017-03-09 13:01:05 -0500
commita5ce7018a36a63fe07c7d4b5a801792213cc6fd7 (patch)
tree77e63066b388a6fe047751ea2184cfc39342cf41
parent49a5e4d7ed58ae5d8dc437a03a5653d219fb654e (diff)
parent5e440ad661be9cd2066c5f0e9b460fa01f8e48e5 (diff)
Merge pull request #71 from ashalkhakov/sqlite-is-distinct-from-fix
SQLite does not support IS DISTINCT FROM
-rw-r--r--src/sqlite.sml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqlite.sml b/src/sqlite.sml
index c7694cde..a9b6389d 100644
--- a/src/sqlite.sml
+++ b/src/sqlite.sml
@@ -850,6 +850,6 @@ val () = addDbms {name = "sqlite",
onlyUnion = false,
nestedRelops = false,
windowFunctions = false,
- supportsIsDistinctFrom = true}
+ supportsIsDistinctFrom = false}
end