diff options
Diffstat (limited to 'src/test/mb/expected/euc_jp.out')
| -rw-r--r-- | src/test/mb/expected/euc_jp.out | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/src/test/mb/expected/euc_jp.out b/src/test/mb/expected/euc_jp.out index 6f38e998a8..838b0a8363 100644 --- a/src/test/mb/expected/euc_jp.out +++ b/src/test/mb/expected/euc_jp.out @@ -1,13 +1,13 @@ -drop table 計算機用語; +drop table 計算機用語 ERROR: Relation '計算機用語' does not exist -create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16)); -create index 計算機用語index1 on 計算機用語 using btree (用語); -create index 計算機用語index2 on 計算機用語 using hash (分類コード); -insert into 計算機用語 values('コンピュータディスプレイ','機A01上'); -insert into 計算機用語 values('コンピュータグラフィックス','分B10中'); -insert into 計算機用語 values('コンピュータプログラマー','人Z01下'); -vacuum 計算機用語; -select * from 計算機用語; +create table 計算機用語 (用語 text, 分類コード varchar, 備考1Aだよ char(16)) +create index 計算機用語index1 on 計算機用語 using btree (用語) +create index 計算機用語index2 on 計算機用語 using hash (分類コード) +insert into 計算機用語 values('コンピュータディスプレイ','機A01上') +insert into 計算機用語 values('コンピュータグラフィックス','分B10中') +insert into 計算機用語 values('コンピュータプログラマー','人Z01下') +vacuum 計算機用語 +select * from 計算機用語 用語 | 分類コード | 備考1aだよ ----------------------------+------------+------------ コンピュータディスプレイ | 機A01上 | @@ -15,45 +15,45 @@ select * from 計算機用語; コンピュータプログラマー | 人Z01下 | (3 rows) -select * from 計算機用語 where 分類コード = '人Z01下'; +select * from 計算機用語 where 分類コード = '人Z01下' 用語 | 分類コード | 備考1aだよ --------------------------+------------+------------ コンピュータプログラマー | 人Z01下 | (1 row) -select * from 計算機用語 where 分類コード ~* '人z01下'; +select * from 計算機用語 where 分類コード ~* '人z01下' 用語 | 分類コード | 備考1aだよ --------------------------+------------+------------ コンピュータプログラマー | 人Z01下 | (1 row) -select * from 計算機用語 where 分類コード like '_Z01_'; +select * from 計算機用語 where 分類コード like '_Z01_' 用語 | 分類コード | 備考1aだよ --------------------------+------------+------------ コンピュータプログラマー | 人Z01下 | (1 row) -select * from 計算機用語 where 分類コード like '_Z%'; +select * from 計算機用語 where 分類コード like '_Z%' 用語 | 分類コード | 備考1aだよ --------------------------+------------+------------ コンピュータプログラマー | 人Z01下 | (1 row) -select * from 計算機用語 where 用語 ~ 'コンピュータ[デグ]'; +select * from 計算機用語 where 用語 ~ 'コンピュータ[デグ]' 用語 | 分類コード | 備考1aだよ ----------------------------+------------+------------ コンピュータディスプレイ | 機A01上 | コンピュータグラフィックス | 分B10中 | (2 rows) -select * from 計算機用語 where 用語 ~* 'コンピュータ[デグ]'; +select * from 計算機用語 where 用語 ~* 'コンピュータ[デグ]' 用語 | 分類コード | 備考1aだよ ----------------------------+------------+------------ コンピュータディスプレイ | 機A01上 | コンピュータグラフィックス | 分B10中 | (2 rows) -select *,character_length(用語) from 計算機用語; +select *,character_length(用語) from 計算機用語 用語 | 分類コード | 備考1aだよ | length ----------------------------+------------+------------+-------- コンピュータディスプレイ | 機A01上 | | 12 @@ -61,7 +61,7 @@ select *,character_length(用語) from 計算機用語; コンピュータプログラマー | 人Z01下 | | 12 (3 rows) -select *,octet_length(用語) from 計算機用語; +select *,octet_length(用語) from 計算機用語 用語 | 分類コード | 備考1aだよ | octet_length ----------------------------+------------+------------+-------------- コンピュータディスプレイ | 機A01上 | | 24 @@ -69,7 +69,7 @@ select *,octet_length(用語) from 計算機用語; コンピュータプログラマー | 人Z01下 | | 24 (3 rows) -select *,position('デ' in 用語) from 計算機用語; +select *,position('デ' in 用語) from 計算機用語 用語 | 分類コード | 備考1aだよ | strpos ----------------------------+------------+------------+-------- コンピュータディスプレイ | 機A01上 | | 7 @@ -77,7 +77,7 @@ select *,position('デ' in 用語) from 計算機用語; コンピュータプログラマー | 人Z01下 | | 0 (3 rows) -select *,substring(用語 from 10 for 4) from 計算機用語; +select *,substring(用語 from 10 for 4) from 計算機用語 用語 | 分類コード | 備考1aだよ | substr ----------------------------+------------+------------+---------- コンピュータディスプレイ | 機A01上 | | プレイ |
