Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
bab9818c
Commit
bab9818c
authored
Apr 29, 1998
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missed adding two files from the MultiByte patch...
parent
a9ed49d5
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
70 additions
and
0 deletions
+70
-0
src/test/regress/expected/euc_kr.out
src/test/regress/expected/euc_kr.out
+55
-0
src/test/regress/sql/euc_kr.sql
src/test/regress/sql/euc_kr.sql
+15
-0
No files found.
src/test/regress/expected/euc_kr.out
0 → 100644
View file @
bab9818c
QUERY: drop table 計算機용어;
ERROR: Relation 計算機용어 Does Not Exist!
QUERY: create table 計算機용어 (용어 text, 分類코드 varchar, 비고1A라구 char(16));
QUERY: create index 計算機용어index1 on 計算機용어 using btree (용어);
QUERY: create index 計算機용어index2 on 計算機용어 using hash (分類코드);
QUERY: insert into 計算機용어 values('컴퓨터디스플레이', '機A01上');
QUERY: insert into 計算機용어 values('컴퓨터그래픽스', '分B10中');
QUERY: insert into 計算機용어 values('컴퓨터프로그래머', '人Z01下');
QUERY: vacuum 計算機용어;
QUERY: select * from 計算機용어;
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터디스플레이|機A01上 |
컴퓨터그래픽스 |分B10中 |
컴퓨터프로그래머|人Z01下 |
(3 rows)
QUERY: select * from 計算機용어 where 分類코드 = '人Z01下';
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터프로그래머|人Z01下 |
(1 row)
QUERY: select * from 計算機용어 where 分類코드 ~* '人z01下';
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터프로그래머|人Z01下 |
(1 row)
QUERY: select * from 計算機용어 where 分類코드 like '_Z01_';
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터프로그래머|人Z01下 |
(1 row)
QUERY: select * from 計算機용어 where 分類코드 like '_Z%';
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터프로그래머|人Z01下 |
(1 row)
QUERY: select * from 計算機용어 where 용어 ~ '컴퓨터[디그]';
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터디스플레이|機A01上 |
컴퓨터그래픽스 |分B10中 |
(2 rows)
QUERY: select * from 計算機용어 where 용어 ~* '컴퓨터[디그]';
용어 |分類코드|비고1a라구
----------------+--------+----------
컴퓨터디스플레이|機A01上 |
컴퓨터그래픽스 |分B10中 |
(2 rows)
src/test/regress/sql/euc_kr.sql
0 → 100644
View file @
bab9818c
drop
table
計算機용어
;
create
table
計算機용어
(
용어
text
,
分類코드
varchar
,
비고
1
A
라구
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
計算機용어
;
select
*
from
計算機용어
where
分類코드
=
'人Z01下'
;
select
*
from
計算機용어
where
分類코드
~*
'人z01下'
;
select
*
from
計算機용어
where
分類코드
like
'_Z01_'
;
select
*
from
計算機용어
where
分類코드
like
'_Z%'
;
select
*
from
計算機용어
where
용어
~
'컴퓨터[디그]'
;
select
*
from
計算機용어
where
용어
~*
'컴퓨터[디그]'
;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment