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
(ch:query *db*"CREATE TABLE string_demo ( city String, state FixedString(2) ) ENGINE = MergeTree ORDER BY tuple()":consolet)
(ch:query *db*"INSERT INTO string_demo VALUES ('Albany', 'NY'), ('Salem', 'OR'), ('Just testing', 'X')":consolet)
(ch:query *db*"SELECT * FROM string_demo FORMAT Pretty":consolet)
(ch:query *db*"SELECT * FROM string_demo FORMAT CSV")
Output:
┌──────────────┬───────┐
│ city │ state │
├──────────────┼───────┤
│ Albany │ NY │
├──────────────┼───────┤
│ Salem │ OR │
├──────────────┼───────┤
│ Just testing │ X\0 │
└──────────────┴───────┘
Describe the bug
Remove ^@ From Output
To Reproduce
Steps to reproduce the behavior:
Output:
The text was updated successfully, but these errors were encountered: