work around for haddock refusal to parse literal comment lines with *
in first character position get rid of code_units since these are not in sql2011 implement next value for parse the nullary functions with reserved names updates to the sql2003 file
This commit is contained in:
parent
7057241974
commit
7a7f4ba7aa
7 changed files with 167 additions and 66 deletions
Language/SQL/SimpleSQL
|
@ -218,6 +218,9 @@ which have been changed to try to improve the layout of the output.
|
|||
> valueExpr (Collate v c) =
|
||||
> valueExpr v <+> text "collate" <+> names c
|
||||
|
||||
> valueExpr (NextValueFor ns) =
|
||||
> text "next value for" <+> names ns
|
||||
|
||||
|
||||
> doubleUpQuotes :: String -> String
|
||||
> doubleUpQuotes [] = []
|
||||
|
@ -263,7 +266,6 @@ which have been changed to try to improve the layout of the output.
|
|||
> LobG -> text "G") m
|
||||
> <+> me (\x -> case x of
|
||||
> LobCharacters -> text "CHARACTERS"
|
||||
> LobCodeUnits -> text "CODE_UNITS"
|
||||
> LobOctets -> text "OCTETS") u)
|
||||
> typeName (CharTypeName t i cs col) =
|
||||
> names t
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue