Open fuyufjh opened 3 days ago
Cannot reproduce with RisingWave v2.0.1 as server and psql 16.0 as client.
It is likely the client is not sending in UTF-8. Waiting on user response.
dev=> CREATE TABLE t1
dev-> (
dev(> id INT PRIMARY KEY,
dev(> name VARCHAR,
dev(> address TEXT
dev(> );
CREATE_TABLE
dev=> INSERT INTO t1 (id,name,address) VALUES(1,'Thømas', 'Vallanbæk Way');
INSERT 0 1
dev=> select * from t1;
id | name | address
----+--------+---------------
1 | Thømas | Vallanbæk Way
(1 row)
dev=> INSERT INTO t1 (id,name,address) VALUES(1,'Thømas', 'Vallanbk Strand');
INSERT 0 1
dev=> select * from t1;
id | name | address
----+--------+-----------------
1 | Thømas | Vallanbk Strand
(1 row)
Describe the bug
As we discussed over the call, this is one of the issues I am facing while inserting ligatures like
æ
orø
to a table I am getting following error.Error message/log
To Reproduce
removing æ from the value , then the insertion is success. But select * from will give 'o' instead of 'ø',
Expected behavior
No response
How did you deploy RisingWave?
No response
The version of RisingWave
2.0
Additional context
No response