Skip to content
Snippets Groups Projects
Commit d69344c5 authored by Tom Lane's avatar Tom Lane
Browse files

More multibyte tests with obsolete spelling of error message...

parent 22fe451c
No related branches found
No related tags found
No related merge requests found
QUERY: drop table 计算机术语; QUERY: drop table 计算机术语;
ERROR: Relation 计算机术语 does not exist! ERROR: Relation '计算机术语' does not exist
QUERY: create table 计算机术语(术语 text, 分类号 varchar, 备注1A char(16)); QUERY: create table 计算机术语(术语 text, 分类号 varchar, 备注1A char(16));
QUERY: create index 计算机术语index1 on 计算机术语 using btree(术语); QUERY: create index 计算机术语index1 on 计算机术语 using btree(术语);
QUERY: create index 计算机术语index2 on 计算机术语 using btree(分类号); QUERY: create index 计算机术语index2 on 计算机术语 using btree(分类号);
......
QUERY: drop table 計算機용어; QUERY: drop table 計算機용어;
ERROR: Relation 計算機용어 does not exist! ERROR: Relation '計算機용어' does not exist
QUERY: create table 計算機용어 (용어 text, 分類코드 varchar, 비고1A라구 char(16)); QUERY: create table 計算機용어 (용어 text, 分類코드 varchar, 비고1A라구 char(16));
QUERY: create index 計算機용어index1 on 計算機용어 using btree (용어); QUERY: create index 計算機용어index1 on 計算機용어 using btree (용어);
QUERY: create index 計算機용어index2 on 計算機용어 using hash (分類코드); QUERY: create index 計算機용어index2 on 計算機용어 using hash (分類코드);
......
QUERY: drop table 燹俑骜砧; QUERY: drop table 燹俑骜砧;
ERROR: Relation 俑骜砧 does not exist! ERROR: Relation '燹俑骜砧' does not exist
QUERY: create table 燹俑骜砧 (如淦杀 text, 狞瞥婉螭 varchar, 氢蛇 varchar(16)); QUERY: create table 燹俑骜砧 (如淦杀 text, 狞瞥婉螭 varchar, 氢蛇 varchar(16));
QUERY: create index 燹俑骜砧index1 on 燹俑骜砧 using btree (如淦杀); QUERY: create index 燹俑骜砧index1 on 燹俑骜砧 using btree (如淦杀);
QUERY: create index 燹俑骜砧index2 on 燹俑骜砧 using hash (狞瞥婉螭); QUERY: create index 燹俑骜砧index2 on 燹俑骜砧 using hash (狞瞥婉螭);
......
QUERY: drop table גђ; QUERY: drop table גђ;
ERROR: Relation גђ does not exist! ERROR: Relation 'גђ' does not exist
QUERY: create table גђ (ђ text, ʬ varchar, 1A char(16)); QUERY: create table גђ (ђ text, ʬ varchar, 1A char(16));
QUERY: create index גђindex1 on גђ using btree (ђ); QUERY: create index גђindex1 on גђ using btree (ђ);
QUERY: create index גђindex2 on גђ using hash (ʬ); QUERY: create index גђindex2 on גђ using hash (ʬ);
...@@ -86,7 +86,7 @@ QUERY: select *,substring( ...@@ -86,7 +86,7 @@ QUERY: select *,substring(
(3 rows) (3 rows)
QUERY: drop table Ƒ㑻; QUERY: drop table Ƒ㑻;
ERROR: Relation Ƒ㑻 does not exist! ERROR: Relation 'Ƒ㑻' does not exist
QUERY: create table Ƒ㑻( text, ֑ varchar, ע1A char(16)); QUERY: create table Ƒ㑻( text, ֑ varchar, ע1A char(16));
QUERY: create index Ƒ㑻index1 on Ƒ㑻 using btree(); QUERY: create index Ƒ㑻index1 on Ƒ㑻 using btree();
QUERY: create index Ƒ㑻index2 on Ƒ㑻 using btree(֑); QUERY: create index Ƒ㑻index2 on Ƒ㑻 using btree(֑);
...@@ -173,7 +173,7 @@ QUERY: select *,substring( ...@@ -173,7 +173,7 @@ QUERY: select *,substring(
(3 rows) (3 rows)
QUERY: drop table ͪߩѦ듾; QUERY: drop table ͪߩѦ듾;
ERROR: Relation ͪߩѦ듾 does not exist! ERROR: Relation 'ͪߩѦ듾' does not exist
QUERY: create table ͪߩѦ듾 (듾 text, “׾ړ varchar, 1A󓱸 char(16)); QUERY: create table ͪߩѦ듾 (듾 text, “׾ړ varchar, 1A󓱸 char(16));
QUERY: create index ͪߩѦ듾index1 on ͪߩѦ듾 using btree (듾); QUERY: create index ͪߩѦ듾index1 on ͪߩѦ듾 using btree (듾);
QUERY: create index ͪߩѦ듾index2 on ͪߩѦ듾 using hash (“׾ړ); QUERY: create index ͪߩѦ듾index2 on ͪߩѦ듾 using hash (“׾ړ);
...@@ -260,7 +260,7 @@ QUERY: select *,substring( ...@@ -260,7 +260,7 @@ QUERY: select *,substring(
(3 rows) (3 rows)
QUERY: drop table test; QUERY: drop table test;
ERROR: Relation test does not exist! ERROR: Relation 'test' does not exist
QUERY: create table test (t text); QUERY: create table test (t text);
QUERY: insert into test values('ENGLISH'); QUERY: insert into test values('ENGLISH');
QUERY: insert into test values('FRANAIS'); QUERY: insert into test values('FRANAIS');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment