Commit d8f356e1 authored by Robert Haas's avatar Robert Haas

Fix MB regression tests for WAL-logging of hash indexes.

Thomas Munro noted that these files still contained the now-removed
deprecation message in the expected output.

Patch by Amit Kapila

Discussion: http://postgr.es/m/CAEepm=16HW_C+MBA27aOV9t4tQBU-vf1BT_yhRUTWZVMd9bq8A@mail.gmail.com
parent f7b711c8
...@@ -2,7 +2,6 @@ drop table ...@@ -2,7 +2,6 @@ drop table
create table 廠商資料 (行業別 text, 公司抬頭 varchar, 地址 varchar(16)); create table 廠商資料 (行業別 text, 公司抬頭 varchar, 地址 varchar(16));
create index 廠商資料index1 on 廠商資料 using btree (行業別); create index 廠商資料index1 on 廠商資料 using btree (行業別);
create index 廠商資料index2 on 廠商資料 using hash (公司抬頭); create index 廠商資料index2 on 廠商資料 using hash (公司抬頭);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 廠商資料 values ('電腦業', '達達科技', '北A01仁'); insert into 廠商資料 values ('電腦業', '達達科技', '北A01仁');
insert into 廠商資料 values ('製造業', '財源有限公司', '中B10中'); insert into 廠商資料 values ('製造業', '財源有限公司', '中B10中');
insert into 廠商資料 values ('餐飲業', '美味股份有限公司', '高Z01九'); insert into 廠商資料 values ('餐飲業', '美味股份有限公司', '高Z01九');
......
...@@ -3,7 +3,6 @@ ERROR: table " ...@@ -3,7 +3,6 @@ ERROR: table "
create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16)); create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16));
create index 計算機用語index1 on 計算機用語 using btree (用語); create index 計算機用語index1 on 計算機用語 using btree (用語);
create index 計算機用語index2 on 計算機用語 using hash (分類コード); create index 計算機用語index2 on 計算機用語 using hash (分類コード);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 計算機用語 values('コンピュータディスプレイ','機A01上'); insert into 計算機用語 values('コンピュータディスプレイ','機A01上');
insert into 計算機用語 values('コンピュータグラフィックス','分B10中'); insert into 計算機用語 values('コンピュータグラフィックス','分B10中');
insert into 計算機用語 values('コンピュータプログラマー','人Z01下'); insert into 計算機用語 values('コンピュータプログラマー','人Z01下');
......
...@@ -3,7 +3,6 @@ ERROR: table "計算機 ...@@ -3,7 +3,6 @@ ERROR: table "計算機
create table 計算機용어 (용어 text, 分類코드 varchar, 비고1A라구 char(16)); create table 計算機용어 (용어 text, 分類코드 varchar, 비고1A라구 char(16));
create index 計算機용어index1 on 計算機용어 using btree (용어); create index 計算機용어index1 on 計算機용어 using btree (용어);
create index 計算機용어index2 on 計算機용어 using hash (分類코드); create index 計算機용어index2 on 計算機용어 using hash (分類코드);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 計算機용어 values('컴퓨터디스플레이', '機A01上'); insert into 計算機용어 values('컴퓨터디스플레이', '機A01上');
insert into 計算機용어 values('컴퓨터그래픽스', '分B10中'); insert into 計算機용어 values('컴퓨터그래픽스', '分B10中');
insert into 計算機용어 values('컴퓨터프로그래머', '人Z01下'); insert into 計算機용어 values('컴퓨터프로그래머', '人Z01下');
......
...@@ -3,7 +3,6 @@ ERROR: table " ...@@ -3,7 +3,6 @@ ERROR: table "
create table 燹俑骜砧 (如淦杀 text, 狞瞥婉螭 varchar, 氢蛇 varchar(16)); create table 燹俑骜砧 (如淦杀 text, 狞瞥婉螭 varchar, 氢蛇 varchar(16));
create index 燹俑骜砧index1 on 燹俑骜砧 using btree (如淦杀); create index 燹俑骜砧index1 on 燹俑骜砧 using btree (如淦杀);
create index 燹俑骜砧index2 on 燹俑骜砧 using hash (狞瞥婉螭); create index 燹俑骜砧index2 on 燹俑骜砧 using hash (狞瞥婉螭);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 燹俑骜砧 values ('缳妾淦', '绠绠绎世', '啤A01念'); insert into 燹俑骜砧 values ('缳妾淦', '绠绠绎世', '啤A01念');
insert into 燹俑骜砧 values ('犒葸淦', '芈溷却宇狞瞥', '你B10你'); insert into 燹俑骜砧 values ('犒葸淦', '芈溷却宇狞瞥', '你B10你');
insert into 燹俑骜砧 values ('螫悖淦', '印汤洗枪却宇狞瞥', '仨Z01摩'); insert into 燹俑骜砧 values ('螫悖淦', '印汤洗枪却宇狞瞥', '仨Z01摩');
......
...@@ -2,7 +2,6 @@ drop table 計 ...@@ -2,7 +2,6 @@ drop table 計
create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16)); create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16));
create index 計算機用語index1 on 計算機用語 using btree (用語); create index 計算機用語index1 on 計算機用語 using btree (用語);
create index 計算機用語index2 on 計算機用語 using hash (分類コード); create index 計算機用語index2 on 計算機用語 using hash (分類コード);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 計算機用語 values('コンピュータディスプレイ','機A01上'); insert into 計算機用語 values('コンピュータディスプレイ','機A01上');
insert into 計算機用語 values('コンピュータグラフィックス','分B10中'); insert into 計算機用語 values('コンピュータグラフィックス','分B10中');
insert into 計算機用語 values('コンピュータプログラマー','人Z01下'); insert into 計算機用語 values('コンピュータプログラマー','人Z01下');
......
...@@ -3,7 +3,6 @@ ERROR: table " ...@@ -3,7 +3,6 @@ ERROR: table "
create table גђ (ђ text, ʬ varchar, 1A char(16)); create table גђ (ђ text, ʬ varchar, 1A char(16));
create index גђindex1 on גђ using btree (ђ); create index גђindex1 on גђ using btree (ђ);
create index גђindex2 on גђ using hash (ʬ); create index גђindex2 on גђ using hash (ʬ);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into גђ values('Ԓ咡ǒג쒥','A01'); insert into גђ values('Ԓ咡ǒג쒥','A01');
insert into גђ values('Ԓ咡钥ՒÒ','ʬB10'); insert into גђ values('Ԓ咡钥ՒÒ','ʬB10');
insert into גђ values('Ԓ咡ג풥钥ޒ','Z01'); insert into גђ values('Ԓ咡ג풥钥ޒ','Z01');
...@@ -178,7 +177,6 @@ ERROR: table " ...@@ -178,7 +177,6 @@ ERROR: table "
create table ͪߩѦ듾 (듾 text, “׾ړ varchar, 1A󓱸 char(16)); create table ͪߩѦ듾 (듾 text, “׾ړ varchar, 1A󓱸 char(16));
create index ͪߩѦ듾index1 on ͪߩѦ듾 using btree (듾); create index ͪߩѦ듾index1 on ͪߩѦ듾 using btree (듾);
create index ͪߩѦ듾index2 on ͪߩѦ듾 using hash (“׾ړ); create index ͪߩѦ듾index2 on ͪߩѦ듾 using hash (“׾ړ);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into ͪߩѦ듾 values('ēǻ͓𓽺Ó', 'ѦA01߾'); insert into ͪߩѦ듾 values('ēǻ͓𓽺Ó', 'ѦA01߾');
insert into ͪߩѦ듾 values('ēǻ͓דȓ', 'B10'); insert into ͪߩѦ듾 values('ēǻ͓דȓ', 'B10');
insert into ͪߩѦ듾 values('ēǻ͓Γד', 'Z01'); insert into ͪߩѦ듾 values('ēǻ͓Γד', 'Z01');
......
...@@ -2,7 +2,6 @@ drop table ...@@ -2,7 +2,6 @@ drop table
create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16)); create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16));
create index 計算機用語index1 on 計算機用語 using btree (用語); create index 計算機用語index1 on 計算機用語 using btree (用語);
create index 計算機用語index2 on 計算機用語 using hash (分類コード); create index 計算機用語index2 on 計算機用語 using hash (分類コード);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 計算機用語 values('コンピュータディスプレイ','機A01上'); insert into 計算機用語 values('コンピュータディスプレイ','機A01上');
insert into 計算機用語 values('コンピュータグラフィックス','分B10中'); insert into 計算機用語 values('コンピュータグラフィックス','分B10中');
insert into 計算機用語 values('コンピュータプログラマー','人Z01下'); insert into 計算機用語 values('コンピュータプログラマー','人Z01下');
......
...@@ -3,7 +3,6 @@ ERROR: table "計算機用語" does not exist ...@@ -3,7 +3,6 @@ ERROR: table "計算機用語" does not exist
create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16)); create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16));
create index 計算機用語index1 on 計算機用語 using btree (用語); create index 計算機用語index1 on 計算機用語 using btree (用語);
create index 計算機用語index2 on 計算機用語 using hash (分類コード); create index 計算機用語index2 on 計算機用語 using hash (分類コード);
WARNING: hash indexes are not WAL-logged and their use is discouraged
insert into 計算機用語 values('コンピュータディスプレイ','機A01上'); insert into 計算機用語 values('コンピュータディスプレイ','機A01上');
insert into 計算機用語 values('コンピュータグラフィックス','分B10中'); insert into 計算機用語 values('コンピュータグラフィックス','分B10中');
insert into 計算機用語 values('コンピュータプログラマー','人Z01下'); insert into 計算機用語 values('コンピュータプログラマー','人Z01下');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment