-- tests for PR #76 github -- see https://www.postgresql.org/docs/current/multibyte.html -- EUC_CN, not tested -- EUC_JP -- EUC_JIS_2004, not tested -- EUC_KR -- EUC_TW, not tested -- ISO_8859_5 -- ISO_8859_6 -- ISO_8859_7 -- ISO_8859_8 -- KOI8R, not tested -- KOI8U, not tested -- LATIN1 -- LATIN2 -- LATIN3 -- LATIN4 -- LATIN5 -- LATIN6 -- LATIN7 -- LATIN8 -- LATIN9 -- LATIN10 -- MULE_INTERNAL, not tested -- SQL_ASCII -- WIN866, not tested -- WIN874, not tested -- WIN1250 -- WIN1251 -- WIN1252 -- WIN1253 -- WIN1254 -- WIN1255 -- WIN1256 -- WIN1257 -- WIN1258, not tested -- ================ -- check all data in UTF8 -- ================ CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; SELECT * FROM "Unicode data"; i | t -----+------------------------------------------------------------------------------------------------------------------------ jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. aze | Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq. arm | Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։ ukr | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком. eus | Permin gox dabiltzu yoskiñ. bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός gle | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig. spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. kor | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다. lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. epo | Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj. cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (20 rows) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; -- euc_jp CREATE DATABASE "contrib_regression_EUC_JP" ENCODING EUC_JP LC_CTYPE='ja_JP.eucjp' LC_COLLATE='ja_JP.eucjp' template template0; \connect "contrib_regression_EUC_JP" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; i | t -----+-------------------------------------------------------------------------------------------------------- jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; i | t -----+-------------------------------------------------------------------------------------------------------- jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; i | t -----+--------------------------------------------------------------------- bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. (1 row) SELECT * FROM "Unicode data" WHERE i = 'bul'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE i = 'rus'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; i | t -----+--------------------------------------------------------------------- bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ------+---------------------------------------------------------------------- bel+ | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._ (1 row) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ------+---------------------------------------------------- bul+ | Ах, чудна българска земьо, полюшвай цъфтящи жита._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ------+---------------------------------------------------------------------------------------- rus+ | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "EUC_JP" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ------+---------------------------------------------------------------- gre+ | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "EUC_JP" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ------+------------------------------------------------------------------------------------------------------------------------- fra+ | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ------+----------------------------------------------------- cze+ | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ------+------------------------------------------------------------------ srp+ | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "EUC_JP" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_JP" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_JP" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "EUC_JP" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ------+----------------------------------------------------------------- epo+ | Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_EUC_JP"; -- ko_KR.euckr CREATE DATABASE "contrib_regression_EUC_KR" ENCODING EUC_KR LC_CTYPE='ko_KR.euckr' LC_COLLATE='ko_KR.euckr' template template0; \connect "contrib_regression_EUC_KR" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; i | t -----+-------------------------------------------------------------------------------------------------------- jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; i | t -----+-------------------------------------------------------------------------------------------------------- jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd1 0x9e in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE i = 'rus'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd1 0x96 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd1 0x9e in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd1 0x96 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd1 0x9e in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd1 0x9e in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ------+---------------------------------------------------- bul+ | Ах, чудна българска земьо, полюшвай цъфтящи жита._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ------+---------------------------------------------------------------------------------------- rus+ | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd1 0x96 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd1 0x96 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "EUC_KR" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xac in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xac in encoding "UTF8" has no equivalent in encoding "EUC_KR" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xac in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xac in encoding "UTF8" has no equivalent in encoding "EUC_KR" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "EUC_KR" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc5 0xbe in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc5 0xbe in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc5 0xbe in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc5 0xbe in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "EUC_KR" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; i | t -----+------------------------------------------------------------------- kor | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; i | t -----+------------------------------------------------------------------- kor | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ------+-------------------------------------------------------------------- kor+ | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._ (1 row) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_KR" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_KR" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "EUC_KR" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_EUC_KR"; -- ISO_8859_5 CREATE DATABASE "contrib_regression_ISO_8859_5" ENCODING ISO_8859_5 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_ISO_8859_5" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE i = 'rus'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ------+---------------------------------------------------- bul+ | Ах, чудна българска земьо, полюшвай цъфтящи жита._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ------+---------------------------------------------------------------------------------------- rus+ | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xe2 0x80 0x94 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_5" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_ISO_8859_5"; -- ISO_8859_6 CREATE DATABASE "contrib_regression_ISO_8859_6" ENCODING ISO_8859_6 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_ISO_8859_6" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; i | t -----+------------------------------------- ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; i | t -----+------------------------------------- ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ------+-------------------------------------- ara+ | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_ (1 row) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_6" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_ISO_8859_6"; -- ISO_8859_7 CREATE DATABASE "contrib_regression_ISO_8859_7" ENCODING ISO_8859_7 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_ISO_8859_7" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ------+---------------------------------------------------------------- gre+ | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_7" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_ISO_8859_7"; -- ISO_8859_8 CREATE DATABASE "contrib_regression_ISO_8859_8" ENCODING ISO_8859_8 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_ISO_8859_8" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; i | t -----+------------------------------------ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; i | t -----+------------------------------------ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ------+------------------------------------- heb+ | עטלף אבק נס דרך מזגן שהתפוצץ כי חם_ (1 row) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "ISO_8859_8" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_ISO_8859_8"; -- ISO_8859_9 CREATE DATABASE "contrib_regression_ISO_8859_9" ENCODING ISO_8859_9 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_ISO_8859_9" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_ISO_8859_9"; -- LATIN1 CREATE DATABASE "contrib_regression_LATIN1" ENCODING LATIN1 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN1" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN1" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN1" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN1"; -- LATIN2 CREATE DATABASE "contrib_regression_LATIN2" ENCODING LATIN2 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN2" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN2" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ------+----------------------------------------------------- cze+ | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ------+------------------------------------------------------------------ srp+ | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN2" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN2" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN2" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN2"; -- LATIN3 CREATE DATABASE "contrib_regression_LATIN3" ENCODING LATIN3 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN3" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN3" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN3" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ------+----------------------------------------------------------------- epo+ | Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN3"; -- LATIN4 CREATE DATABASE "contrib_regression_LATIN4" ENCODING LATIN4 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN4" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN4" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ------+-------------------------------------------------------------------- lav+ | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN4" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN4" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xb3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xb3 in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN4" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN4"; -- LATIN5 CREATE DATABASE "contrib_regression_LATIN5" ENCODING LATIN5 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN5" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN5" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN5"; -- LATIN6 CREATE DATABASE "contrib_regression_LATIN6" ENCODING LATIN6 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN6" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN6" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x87 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ------+-------------------------------------------------------------------- lav+ | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN6" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN6" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN6" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN6"; -- LATIN7 CREATE DATABASE "contrib_regression_LATIN7" ENCODING LATIN7 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN7" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN7" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ------+-------------------------------------------------------------------- lav+ | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN7" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN7" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN7" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN7"; -- LATIN8 CREATE DATABASE "contrib_regression_LATIN8" ENCODING LATIN8 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN8" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN8" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa1 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN8" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN8"; -- LATIN9 CREATE DATABASE "contrib_regression_LATIN9" ENCODING LATIN9 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN9" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN9" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN9" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN9"; -- LATIN10 CREATE DATABASE "contrib_regression_LATIN10" ENCODING LATIN10 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_LATIN10" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN10" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xe2 0x80 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ------+------------------------------------------------------------------ srp+ | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "LATIN10" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_LATIN10"; -- cp1250 CREATE DATABASE "contrib_regression_WIN1250" ENCODING WIN1250 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1250" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1250" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ------+----------------------------------------------------- cze+ | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ------+------------------------------------------------------------------ srp+ | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1250" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1250" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1250" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1250"; -- cp1251 CREATE DATABASE "contrib_regression_WIN1251" ENCODING WIN1251 LC_CTYPE='bg_BG' LC_COLLATE='bg_BG' template template0; \connect "contrib_regression_WIN1251" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1251" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; i | t -----+--------------------------------------------------------------------- bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. (1 row) SELECT * FROM "Unicode data" WHERE i = 'bul'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE i = 'rus'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE i = 'ukr'; i | t -----+------------------------------------------------------------------------- ukr | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; i | t -----+--------------------------------------------------------------------- bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; i | t -----+------------------------------------------------------------------------- ukr | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ------+---------------------------------------------------------------------- bel+ | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._ (1 row) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ------+---------------------------------------------------- bul+ | Ах, чудна българска земьо, полюшвай цъфтящи жита._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ------+---------------------------------------------------------------------------------------- rus+ | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ------+-------------------------------------------------------------------------- ukr+ | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1251" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1251" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1251" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1251"; -- cp1252 CREATE DATABASE "contrib_regression_WIN1252" ENCODING WIN1252 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1252" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1252" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ------+------------------------------------------------------------------------------------------------------------------------- fra+ | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1252" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1252" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1252" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1252"; -- cp1253 CREATE DATABASE "contrib_regression_WIN1253" ENCODING WIN1253 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1253" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1253" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ------+---------------------------------------------------------------- gre+ | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1253" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1253" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1253" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1253"; -- cp1254 CREATE DATABASE "contrib_regression_WIN1254" ENCODING WIN1254 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1254" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1254" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ------+------------------------------------------------------------------------------------------------------------------------- fra+ | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc5 0xa5 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1254" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1254" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1254" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1254"; -- cp1255 CREATE DATABASE "contrib_regression_WIN1255" ENCODING WIN1255 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1255" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1255" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; i | t -----+------------------------------------ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; i | t -----+------------------------------------ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ------+------------------------------------- heb+ | עטלף אבק נס דרך מזגן שהתפוצץ כי חם_ (1 row) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1255" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1255" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa9 in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1255" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1255"; -- cp1256 CREATE DATABASE "contrib_regression_WIN1256" ENCODING WIN1256 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1256" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1256" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; i | t -----+------------------------------------- ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; i | t -----+------------------------------------- ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ------+-------------------------------------- ara+ | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_ (1 row) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xbf in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xbf in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xbf in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xbf in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (50 bytes) in hex : 5063686ec485c48720772074c49920c582c3b364c5ba206a65c5bc61206c7562206fc59b6d20736b727a79c584206669672e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; ERROR: character with byte sequence 0xc4 0x85 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (80 bytes) in hex : c4b66965c4a365c4bc7520636570c4936a73204564676172732042756c73206672616b7520756e2068c5ab746920c5bec48176c49320757a20c48dc4ab6b73746fc5a1c4816d2065c586c4a3c4936d2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; ERROR: character with byte sequence 0xc4 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1256" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1256" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xb3 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xb3 in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1256" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1256"; -- cp1257 CREATE DATABASE "contrib_regression_WIN1257" ENCODING WIN1257 LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_WIN1257" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (149 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1257" DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; ERROR: character with byte sequence 0xe3 0x81 0x84 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (124 bytes) in hex : d0a320d180d183d0b4d0bed0b3d0b020d0b2d0b5d180d0b0d0b1e28099d18f20d19e20d181d185d0bed0b2d196d188d187d18b20d0bfd0b0d0b420d184d0b0d182d18dd0bbd0b5d0bc20d0bbd18fd0b6d0b0d186d18c20d0bdd0b5d0b9d0bad196d18f20d0b3d0b0d18ed187d18bd18f20d0b7d191d0bbd0bad1962e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'bul'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (89 bytes) in hex : d090d1852c20d187d183d0b4d0bdd0b020d0b1d18ad0bbd0b3d0b0d180d181d0bad0b020d0b7d0b5d0bcd18cd0be2c20d0bfd0bed0bbd18ed188d0b2d0b0d0b920d186d18ad184d182d18fd189d0b820d0b6d0b8d182d0b02e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'rus'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (160 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'ukr'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (129 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; ERROR: character with byte sequence 0xd0 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; ERROR: character with byte sequence 0xd0 0x90 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; ERROR: character with byte sequence 0xd0 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; ERROR: character with byte sequence 0xd0 0x93 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (97 bytes) in hex : d8a3d8a8d8acd8af20d987d988d98ed991d8b220d8add98fd8b7d991d98a20d983d984d98ed985d98fd98620d8b3d98ed8b9d992d981d98ed8b520d982d98fd8b1d990d8b4d98ed8aa20d8abd98ed8aed98ed8afd98c20d8b6d98ed8b8d98ed8ba CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; ERROR: character with byte sequence 0xd8 0xb6 in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; ERROR: character with byte sequence 0xd8 0xa3 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (113 bytes) in hex : cea4ceaccf87ceb9cf83cf84ceb720ceb1cebbcf8ecf80ceb7cebe20ceb2ceb1cf86ceaecf8220cf88ceb7cebcceadcebdceb720ceb3ceb72c20ceb4cf81ceb1cf83cebaceb5cebbceafceb6ceb5ceb920cf85cf80ceadcf8120cebdcf89ceb8cf81cebfcf8d20cebacf85cebdcf8ccf82 CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; ERROR: character with byte sequence 0xce 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (61 bytes) in hex : d7a2d798d79cd7a320d790d791d7a720d7a0d7a120d793d7a8d79a20d79ed796d792d79f20d7a9d794d7aad7a4d795d7a6d7a520d79bd79920d797d79d CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; ERROR: character with byte sequence 0xd7 0x9b in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; ERROR: character with byte sequence 0xd7 0xa2 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'fra'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (140 bytes) CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'spa'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (28 bytes) in hex : 5065726d696e20676f7820646162696c747a7520796f736b69c3b12e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (56 bytes) in hex : 517569657265206c6120626f6361206578686175737461207669642c206b6977692c207069c3b161207920667567617a206a616dc3b36e2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; ERROR: character with byte sequence 0xc3 0xa8 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; ERROR: character with byte sequence 0xc3 0xb1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (68 bytes) in hex : 5a766cc3a1c5a1c5a5207ac3a16b65c5996ec3bd2075c48d65c588207320c48f6f6cc3adc48d6b792062c49bc5bec3ad20706f64c3a96c207ac3b36e7920c3ba6cc5af2e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (69 bytes) in hex : 4c6a75626176692c204f6c67612c2068616a646520706fc49169207520467564c5be69206920c48d757420c48765c5a1206e6a65c5be6e75206d757a696b7520737263612e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; ERROR: character with byte sequence 0xc4 0x91 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ------+-------------------------------------------------------------------- lav+ | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (93 bytes) in hex : ed82a4ec8aa4ec9d9820eab3a0ec9ca0eca1b0eab1b4ec9d8020ec9e85ec88a0eb81bceba6ac20eba78ceb8298ec95bc20ed9598eab3a020ed8ab9ebb384ed959c20eab8b0ec88a0ec9d8020ed9584ec9a94ecb99820ec958aeb8ba42e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; ERROR: character with byte sequence 0xed 0x82 0xa4 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1257" HINT: SQLite value with "text" affinity (80 bytes) in hex : 5ac99966c999722c206a616b6574696e692064c9992c2070617061c49fc4b16ec4b12064612067c3b674c3bc722c206275206178c59f616d206861766120c3a76f7820736f797571206f6c616361712e CONTEXT: foreign table "Unicode data" foreign column "t" have data type "text" (usual affinity "text"), in query there is reference to foreign column SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1257" INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; ERROR: character with byte sequence 0xc9 0x99 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; ERROR: character with byte sequence 0xd4 0xb2 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; ERROR: character with byte sequence 0xc3 0xa1 in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ---+--- (0 rows) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; ERROR: character with byte sequence 0xc5 0xad in encoding "UTF8" has no equivalent in encoding "WIN1257" SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_WIN1257"; -- SQL_ASCII CREATE DATABASE "contrib_regression_SQL_ASCII" ENCODING SQL_ASCII LC_CTYPE='POSIX' LC_COLLATE='POSIX' template template0; \connect "contrib_regression_SQL_ASCII" CREATE EXTENSION sqlite_fdw; CREATE SERVER sqlite_svr FOREIGN DATA WRAPPER sqlite_fdw OPTIONS (database '/tmp/sqlite_fdw_test/common.db'); CREATE FOREIGN TABLE "Unicode data"(i text OPTIONS (key 'true'), t text) SERVER sqlite_svr; -- EUC_JP SELECT * FROM "Unicode data" WHERE i = 'jap'; i | t -----+-------------------------------------------------------------------------------------------------------- jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'いろはにほ%'; i | t -----+-------------------------------------------------------------------------------------------------------- jap | いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('jap+', 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'); DELETE FROM "Unicode data" WHERE t = 'いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'jap+'; n --- 0 (1 row) -- 1251, ISO_8859_5 SELECT * FROM "Unicode data" WHERE i = 'bel'; i | t -----+--------------------------------------------------------------------- bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. (1 row) SELECT * FROM "Unicode data" WHERE i = 'bul'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE i = 'rus'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE i = 'ukr'; i | t -----+------------------------------------------------------------------------- ukr | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'У руд%'; i | t -----+--------------------------------------------------------------------- bel | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ах, ч%'; i | t -----+--------------------------------------------------- bul | Ах, чудна българска земьо, полюшвай цъфтящи жита. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Широк%'; i | t -----+--------------------------------------------------------------------------------------- rus | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Гей, %'; i | t -----+------------------------------------------------------------------------- ukr | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bel+', 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'); SELECT * FROM "Unicode data" WHERE i = 'bel+'; i | t ------+---------------------------------------------------------------------- bel+ | У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._ (1 row) DELETE FROM "Unicode data" WHERE t = 'У рудога вераб’я ў сховішчы пад фатэлем ляжаць нейкія гаючыя зёлкі._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bel+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('bul+', 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'); SELECT * FROM "Unicode data" WHERE i = 'bul+'; i | t ------+---------------------------------------------------- bul+ | Ах, чудна българска земьо, полюшвай цъфтящи жита._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ах, чудна българска земьо, полюшвай цъфтящи жита._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'bul+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('rus+', 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'); SELECT * FROM "Unicode data" WHERE i = 'rus+'; i | t ------+---------------------------------------------------------------------------------------- rus+ | Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'rus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ukr+', 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'); SELECT * FROM "Unicode data" WHERE i = 'ukr+'; i | t ------+-------------------------------------------------------------------------- ukr+ | Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Гей, хлопці, не вспію — на ґанку ваша файна їжа знищується бурундучком._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'ukr+'; n --- 0 (1 row) -- 1256, ISO_8859_6 SELECT * FROM "Unicode data" WHERE i = 'ara'; i | t -----+------------------------------------- ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '%ضَظَغ%'; i | t -----+------------------------------------- ara | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('ara+', 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'); SELECT * FROM "Unicode data" WHERE i = 'ara+'; i | t ------+-------------------------------------- ara+ | أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_ (1 row) DELETE FROM "Unicode data" WHERE t = 'أبجد هوَّز حُطّي كلَمُن سَعْفَص قُرِشَت ثَخَدٌ ضَظَغ_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'ara+'; n --- 0 (1 row) -- 1253, ISO_8859_7 SELECT * FROM "Unicode data" WHERE i = 'gre'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Τάχισ%'; i | t -----+--------------------------------------------------------------- gre | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gre+', 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'); SELECT * FROM "Unicode data" WHERE i = 'gre+'; i | t ------+---------------------------------------------------------------- gre+ | Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Τάχιστη αλώπηξ βαφής ψημένη γη, δρασκελίζει υπέρ νωθρού κυνός_'; -- 1255, ISO_8859_8 SELECT * FROM "Unicode data" WHERE i = 'heb'; i | t -----+------------------------------------ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '%כי ח%'; i | t -----+------------------------------------ heb | עטלף אבק נס דרך מזגן שהתפוצץ כי חם (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('heb+', 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'); SELECT * FROM "Unicode data" WHERE i = 'heb+'; i | t ------+------------------------------------- heb+ | עטלף אבק נס דרך מזגן שהתפוצץ כי חם_ (1 row) DELETE FROM "Unicode data" WHERE t = 'עטלף אבק נס דרך מזגן שהתפוצץ כי חם_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'heb+'; n --- 0 (1 row) -- 1252, LATIN1 SELECT * FROM "Unicode data" WHERE i = 'eus'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE i = 'fra'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE i = 'spa'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Permi%'; i | t -----+----------------------------- eus | Permin gox dabiltzu yoskiñ. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Dès N%'; i | t -----+------------------------------------------------------------------------------------------------------------------------ fra | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera ! (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Quier%'; i | t -----+-------------------------------------------------------- spa | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('eus+', 'Permin gox dabiltzu yoskiñ._'); SELECT * FROM "Unicode data" WHERE i = 'eus+'; i | t ------+------------------------------ eus+ | Permin gox dabiltzu yoskiñ._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Permin gox dabiltzu yoskiñ._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'eus+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('fra+', 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'); SELECT * FROM "Unicode data" WHERE i = 'fra+'; i | t ------+------------------------------------------------------------------------------------------------------------------------- fra+ | Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Dès Noël où un zéphyr haï me vêt de glaçons würmiens je dîne d’exquis rôtis de bœuf au kir à l’aÿ d’âge mûr & cætera !_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'fra+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('spa+', 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'); SELECT * FROM "Unicode data" WHERE i = 'spa+'; i | t ------+--------------------------------------------------------- spa+ | Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Quiere la boca exhausta vid, kiwi, piña y fugaz jamón._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'spa+'; n --- 0 (1 row) -- 1250, LATIN2 SELECT * FROM "Unicode data" WHERE i = 'cze'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE i = 'pol'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE i = 'srp'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Zvláš%'; i | t -----+---------------------------------------------------- cze | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Pchną%'; i | t -----+------------------------------------------- pol | Pchnąć w tę łódź jeża lub ośm skrzyń fig. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ljuba%'; i | t -----+----------------------------------------------------------------- srp | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('cze+', 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'); SELECT * FROM "Unicode data" WHERE i = 'cze+'; i | t ------+----------------------------------------------------- cze+ | Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Zvlášť zákeřný učeň s ďolíčky běží podél zóny úlů._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'cze+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('pol+', 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'); SELECT * FROM "Unicode data" WHERE i = 'pol+'; i | t ------+-------------------------------------------- pol+ | Pchnąć w tę łódź jeża lub ośm skrzyń fig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Pchnąć w tę łódź jeża lub ośm skrzyń fig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'pol+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('srp+', 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'); SELECT * FROM "Unicode data" WHERE i = 'srp+'; i | t ------+------------------------------------------------------------------ srp+ | Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ljubavi, Olga, hajde pođi u Fudži i čut ćeš nježnu muziku srca._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'srp+'; n --- 0 (1 row) -- 1257, LATIN7 SELECT * FROM "Unicode data" WHERE i = 'lav'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Ķieģeļu%'; i | t -----+------------------------------------------------------------------- lav | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('lav+', 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'); SELECT * FROM "Unicode data" WHERE i = 'lav+'; i | t ------+-------------------------------------------------------------------- lav+ | Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Ķieģeļu cepējs Edgars Buls fraku un hūti žāvē uz čīkstošām eņģēm._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'lav+'; n --- 0 (1 row) -- EUC_KR SELECT * FROM "Unicode data" WHERE i = 'kor'; i | t -----+------------------------------------------------------------------- kor | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE '키스의 고%'; i | t -----+------------------------------------------------------------------- kor | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('kor+', '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'); SELECT * FROM "Unicode data" WHERE i = 'kor+'; i | t ------+-------------------------------------------------------------------- kor+ | 키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._ (1 row) DELETE FROM "Unicode data" WHERE t = '키스의 고유조건은 입술끼리 만나야 하고 특별한 기술은 필요치 않다._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'kor+'; n --- 0 (1 row) -- 1254, LATIN5 SELECT * FROM "Unicode data" WHERE i = 'aze'; i | t -----+------------------------------------------------------------------------ aze | Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq. (1 row) SELECT * FROM "Unicode data" WHERE t LIKE 'Zəfər%'; i | t -----+------------------------------------------------------------------------ aze | Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq. (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('aze+', 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'); SELECT * FROM "Unicode data" WHERE i = 'aze+'; i | t ------+------------------------------------------------------------------------- aze+ | Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Zəfər, jaketini də, papağını da götür, bu axşam hava çox soyuq olacaq._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'aze+'; n --- 0 (1 row) -- etc INSERT INTO "Unicode data" (i, t) VALUES ('arm+', 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'); SELECT * FROM "Unicode data" WHERE i = 'arm+'; i | t ------+-------------------------------------------------------------------- arm+ | Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_ (1 row) DELETE FROM "Unicode data" WHERE t = 'Բել դղյակի ձախ ժամն օֆ ազգությանը ցպահանջ չճշտած վնաս էր եւ փառք։_'; SELECT count(*) n FROM "Unicode data" WHERE i = 'arm+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('gle+', 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'); SELECT * FROM "Unicode data" WHERE i = 'gle+'; i | t ------+------------------------------------------------------------------------------ gle+ | Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Chuaigh bé mhórshách le dlúthspád fíorfhinn trí hata mo dhea-phorcáin bhig._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'gle+'; n --- 0 (1 row) INSERT INTO "Unicode data" (i, t) VALUES ('epo+', 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'); SELECT * FROM "Unicode data" WHERE i = 'epo+'; i | t ------+----------------------------------------------------------------- epo+ | Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._ (1 row) DELETE FROM "Unicode data" WHERE t = 'Laŭ Ludoviko Zamenhof bongustas freŝa ĉeĥa manĝaĵo kun spicoj._'; SELECT count(*) n FROM "Unicode data" WHERE i = 'epo+'; n --- 0 (1 row) DROP FOREIGN TABLE "Unicode data"; DROP SERVER sqlite_svr; DROP EXTENSION sqlite_fdw; \connect contrib_regression; DROP DATABASE "contrib_regression_SQL_ASCII";