Skip to content

Using "isnull" function introduces a space between function name and opening parenthesis #641

Closed
@williamscs

Description

Describe the bug
Using SQL Server's "isnull" function introduces a space between function name and parentheses. This doesn't happen with other functions like "nullif".

To Reproduce
I used the main site's "try it out" section to reproduce.

Before fmt
image

select isnull(column, 'some string'), nullif(25, 25);

After fmt
image

select isnull (column, 'some string'), nullif(25, 25)
;

Expected behavior
I would expect 'isnull' to be treated the same as 'nullif' where there is no space between the function name and the parenthesis.

Actual behavior
A space is introduced.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugSomething isn't working

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions