diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-04-01 17:21:16 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-04-01 17:21:16 -0400 |
commit | 5426959c49c3eeb40f6aac7595d91b867b4e4417 (patch) | |
tree | 640b653b8f73d907847dbf5887f47484ce9f0255 /src/mysql.sml | |
parent | 163747f5d60201ae83f2e57b72ee5d32b247cae5 (diff) |
Relational operators portability
Diffstat (limited to 'src/mysql.sml')
-rw-r--r-- | src/mysql.sml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mysql.sml b/src/mysql.sml index b894bfac..fa49ced3 100644 --- a/src/mysql.sml +++ b/src/mysql.sml @@ -1544,6 +1544,8 @@ val () = addDbms {name = "mysql", sqlPrefix = "SET storage_engine=InnoDB;\n\n", supportsOctetLength = true, trueString = "TRUE", - falseString = "FALSE"} + falseString = "FALSE", + onlyUnion = true, + nestedRelops = false} end |