jdorn/sql-formatter

Highlighting support for binary/hex numbers and variables.

jdorn opened this issue · 0 comments

Binary and hex numbers should be highlighted the same as decimal numbers.

SELECT 10;
SELECT 0xa0;
SELECT 0b00100110;

Variables should have their own syntax highlighting color.

SET @myvar = 5;
SELECT @myvar;