Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
c9ceab96
Commit
c9ceab96
authored
25 years ago
by
Tatsuo Ishii
Browse files
Options
Downloads
Patches
Plain Diff
Add SQL_ASCII test case
parent
544cafb4
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/test/regress/expected/sql_ascii.out
+87
-0
87 additions, 0 deletions
src/test/regress/expected/sql_ascii.out
with
87 additions
and
0 deletions
src/test/regress/expected/sql_ascii.out
0 → 100644
+
87
−
0
View file @
c9ceab96
drop table computer_terms;
ERROR: Relation 'computer_terms' does not exist
create table computer_terms(term text, category text, comments char(16));
create index computer_terms_index1 on computer_terms using btree(term);
create index computer_terms_index2 on computer_terms using btree(category);
insert into computer_terms values('computer display', 'X-A01-Y', 'a comment 1');
insert into computer_terms values('computer graphics', 'T-B01-Y', 'a comment 2');
insert into computer_terms values('computer programmer', 'S-Z01-Y', 'a comment 3');
vacuum computer_terms;
select * from computer_terms;
term | category | comments
---------------------+----------+------------------
computer display | X-A01-Y | a comment 1
computer graphics | T-B01-Y | a comment 2
computer programmer | S-Z01-Y | a comment 3
(3 rows)
select * from computer_terms where category = 'X-A01-Y';
term | category | comments
------------------+----------+------------------
computer display | X-A01-Y | a comment 1
(1 row)
select * from computer_terms where category ~* 'x-a01-y';
term | category | comments
------------------+----------+------------------
computer display | X-A01-Y | a comment 1
(1 row)
select * from computer_terms where category like '_-A01-_';
term | category | comments
------------------+----------+------------------
computer display | X-A01-Y | a comment 1
(1 row)
select * from computer_terms where category like '_-A%';
term | category | comments
------------------+----------+------------------
computer display | X-A01-Y | a comment 1
(1 row)
select * from computer_terms where term ~ 'computer [dg]';
term | category | comments
-------------------+----------+------------------
computer display | X-A01-Y | a comment 1
computer graphics | T-B01-Y | a comment 2
(2 rows)
select * from computer_terms where term ~* 'computer [DG]';
term | category | comments
-------------------+----------+------------------
computer display | X-A01-Y | a comment 1
computer graphics | T-B01-Y | a comment 2
(2 rows)
select *,character_length(term) from computer_terms;
term | category | comments | length
---------------------+----------+------------------+--------
computer display | X-A01-Y | a comment 1 | 16
computer graphics | T-B01-Y | a comment 2 | 17
computer programmer | S-Z01-Y | a comment 3 | 19
(3 rows)
select *,octet_length(term) from computer_terms;
term | category | comments | octet_length
---------------------+----------+------------------+--------------
computer display | X-A01-Y | a comment 1 | 16
computer graphics | T-B01-Y | a comment 2 | 17
computer programmer | S-Z01-Y | a comment 3 | 19
(3 rows)
select *,position('s' in term) from computer_terms;
term | category | comments | strpos
---------------------+----------+------------------+--------
computer display | X-A01-Y | a comment 1 | 12
computer graphics | T-B01-Y | a comment 2 | 17
computer programmer | S-Z01-Y | a comment 3 | 0
(3 rows)
select *,substring(term from 10 for 4) from computer_terms;
term | category | comments | substr
---------------------+----------+------------------+--------
computer display | X-A01-Y | a comment 1 | disp
computer graphics | T-B01-Y | a comment 2 | grap
computer programmer | S-Z01-Y | a comment 3 | prog
(3 rows)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment