You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix CHAR(0) to return null byte instead of empty byte array
CHAR(0) should return a single null byte (\0) not an empty byte array.
This was exposed by string-to-number conversion changes that now
correctly convert empty strings to 0 instead of erroring.
Before: CHAR('') -> error path -> append null byte
After: CHAR('') -> converts to 0 -> CHAR(0) -> should return null byte
Fixes the failing test: select if('', 1, char(''))
0 commit comments