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
eabd1b2e
Commit
eabd1b2e
authored
16 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Have psql output tab as the proper number of spaces, rather than \x09.
parent
5adf98ae
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/bin/psql/mbprint.c
+9
-1
9 additions, 1 deletion
src/bin/psql/mbprint.c
src/test/regress/expected/prepare.out
+9
-7
9 additions, 7 deletions
src/test/regress/expected/prepare.out
with
18 additions
and
8 deletions
src/bin/psql/mbprint.c
+
9
−
1
View file @
eabd1b2e
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
* Copyright (c) 2000-2008, PostgreSQL Global Development Group
*
*
* $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.3
1
2008/05/08 1
7:04:2
6 momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.3
2
2008/05/08 1
9:11:3
6 momjian Exp $
*
*
* XXX this file does not really belong in psql/. Perhaps move to libpq?
* XXX this file does not really belong in psql/. Perhaps move to libpq?
* It also seems that the mbvalidate function is redundant with existing
* It also seems that the mbvalidate function is redundant with existing
...
@@ -321,6 +321,14 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
...
@@ -321,6 +321,14 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
linewidth
+=
2
;
linewidth
+=
2
;
ptr
+=
2
;
ptr
+=
2
;
}
}
else
if
(
*
pwcs
==
'\t'
)
/* Tab */
{
do
{
*
ptr
++
=
' '
;
linewidth
++
;
}
while
(
linewidth
%
8
!=
0
);
}
else
if
(
w
<
0
)
/* Other control char */
else
if
(
w
<
0
)
/* Other control char */
{
{
sprintf
((
char
*
)
ptr
,
"
\\
x%02X"
,
*
pwcs
);
sprintf
((
char
*
)
ptr
,
"
\\
x%02X"
,
*
pwcs
);
...
...
This diff is collapsed.
Click to expand it.
src/test/regress/expected/prepare.out
+
9
−
7
View file @
eabd1b2e
...
@@ -155,15 +155,17 @@ SELECT name, statement, parameter_types FROM pg_prepared_statements
...
@@ -155,15 +155,17 @@ SELECT name, statement, parameter_types FROM pg_prepared_statements
name | statement | parameter_types
name | statement | parameter_types
------+-----------------------------------------------------------------+--------------------------------------------------------
------+-----------------------------------------------------------------+--------------------------------------------------------
q2 | PREPARE q2(text) AS | {text}
q2 | PREPARE q2(text) AS | {text}
:
\x09
SELECT datname, datistemplate, datallowconn
:
SELECT datname, datistemplate, datallowconn
:
\x09
FROM pg_database WHERE datname = $1;
:
FROM pg_database WHERE datname = $1;
q3 | PREPARE q3(text, int, float, boolean, oid, smallint) AS | {text,integer,"double precision",boolean,oid,smallint}
q3 | PREPARE q3(text, int, float, boolean, oid, smallint) AS | {text,integer,"double precision",boolean,oid,smallint}
: \x09SELECT * FROM tenk1 WHERE string4 = $1 AND (four = $2 OR
: SELECT * FROM tenk1 WHERE string4 = $1 AND (four = $2 O
: \x09ten = $3::bigint OR true = $4 OR oid = $5 OR odd = $6::int)
; R
: \x09ORDER BY unique1;
: ten = $3::bigint OR true = $4 OR oid = $5 OR odd = $6::
; int)
: ORDER BY unique1;
q5 | PREPARE q5(int, text) AS | {integer,text}
q5 | PREPARE q5(int, text) AS | {integer,text}
:
\x09
SELECT * FROM tenk1 WHERE unique1 = $1 OR stringu1 = $2
:
SELECT * FROM tenk1 WHERE unique1 = $1 OR stringu1 = $2
:
\x09
ORDER BY unique1;
:
ORDER BY unique1;
q6 | PREPARE q6 AS | {integer,name}
q6 | PREPARE q6 AS | {integer,name}
: SELECT * FROM tenk1 WHERE unique1 = $1 AND stringu1 = $2;
: SELECT * FROM tenk1 WHERE unique1 = $1 AND stringu1 = $2;
q7 | PREPARE q7(unknown) AS | {path}
q7 | PREPARE q7(unknown) AS | {path}
...
...
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