SET client_encoding = 'UNICODE';

CREATE TABLE example_objects (
    object_id numeric(20,0) NOT NULL,
    name character varying(20)
) WITHOUT OIDS;

COPY example_objects (object_id, name) FROM stdin;
1	root
2	Мебель
2	Модемы
\.
\set echo all;
select * from example_objects where name = 'Модемы';

