add generation clause support to create table
This commit is contained in:
parent
e495e240c0
commit
4f80ec96d4
4 changed files with 16 additions and 1 deletions
Language/SQL/SimpleSQL
|
@ -463,6 +463,8 @@ which have been changed to try to improve the layout of the output.
|
|||
> Nothing -> empty
|
||||
> Just (DefaultClause def) ->
|
||||
> text "default" <+> valueExpr d def
|
||||
> Just (GenerationClause e) ->
|
||||
> texts ["generated","always","as"] <+> parens (valueExpr d e)
|
||||
> Just (IdentityColumnSpec w o) ->
|
||||
> text "generated"
|
||||
> <+> (case w of
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue