-[FIXED] Issues with `createFunction` and `dropFunction` (PostgresSQL)
-[FIXED] Issues with `createFunction` and `dropFunction` (PostgresSQL)
-[FIXED] Issue with belongsTo association and foreign keys [#6400](https://github.com/sequelize/sequelize/issues/6400)
-[FIXED] Issue with belongsTo association and foreign keys [#6400](https://github.com/sequelize/sequelize/issues/6400)
-[FIXED] Issue with query generation in MSSQL, an identifier was not escaped [#6686](https://github.com/sequelize/sequelize/pull/6686)
-[FIXED] Issue with query generation in MSSQL, an identifier was not escaped [#6686](https://github.com/sequelize/sequelize/pull/6686)
-[FIXED] GroupedLimit when foreignKey has a field alias
-[FIXED] groupedLimit.through.where support
# 4.0.0-2
# 4.0.0-2
-[ADDED] include now supports string as an argument (on top of model/association), string will expand into an association matched literally from Model.associations
-[ADDED] include now supports string as an argument (on top of model/association), string will expand into an association matched literally from Model.associations
'(SELECT [user].[id_user] AS [id], [user].[last_name] AS [subquery_order_0], [project_users].[user_id] AS [project_users.userId], [project_users].[project_id] AS [project_users.projectId] FROM [users] AS [user] INNER JOIN [project_users] AS [project_users] ON [user].[id_user] = [project_users].[user_id] AND [project_users].[project_id] = 1 AND [project_users].[status] = 1 ORDER BY [subquery_order_0] ASC'+(current.dialect.name==='mssql'?', [id_user]':'')+sql.addLimitAndOffset({limit:3,order:['last_name','ASC']})+')',
'(SELECT [user].[id_user] AS [id], [user].[last_name] AS [subquery_order_0], [project_users].[user_id] AS [project_users.userId], [project_users].[project_id] AS [project_users.projectId] FROM [users] AS [user] INNER JOIN [project_users] AS [project_users] ON [user].[id_user] = [project_users].[user_id] AND [project_users].[project_id] = 5 AND [project_users].[status] = 1 ORDER BY [subquery_order_0] ASC'+(current.dialect.name==='mssql'?', [id_user]':'')+sql.addLimitAndOffset({limit:3,order:['last_name','ASC']})+')'
].join(current.dialect.supports['UNION ALL']?' UNION ALL ':' UNION ')