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
0c2c061e
Commit
0c2c061e
authored
17 years ago
by
Bruce Momjian
Browse files
Options
Downloads
Patches
Plain Diff
Cleanup for new else/comment handling.
parent
eae7e00f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/backend/utils/mb/conv.c
+2
-2
2 additions, 2 deletions
src/backend/utils/mb/conv.c
src/bin/psql/mbprint.c
+5
-5
5 additions, 5 deletions
src/bin/psql/mbprint.c
src/tools/pgindent/pgindent
+6
-5
6 additions, 5 deletions
src/tools/pgindent/pgindent
with
13 additions
and
12 deletions
src/backend/utils/mb/conv.c
+
2
−
2
View file @
0c2c061e
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/mb/conv.c,v 1.6
4
2007/11/1
5 23:23:4
4 momjian Exp $
* $PostgreSQL: pgsql/src/backend/utils/mb/conv.c,v 1.6
5
2007/11/1
6 01:11:0
4 momjian Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -461,7 +461,7 @@ UtfToLocal(const unsigned char *utf, unsigned char *iso,
...
@@ -461,7 +461,7 @@ UtfToLocal(const unsigned char *utf, unsigned char *iso,
code
=
p
->
code
;
code
=
p
->
code
;
}
}
}
}
else
/*
no cmap or no remaining data */
else
/* no cmap or no remaining data */
{
{
p
=
bsearch
(
&
iutf
,
map
,
size1
,
p
=
bsearch
(
&
iutf
,
map
,
size1
,
sizeof
(
pg_utf_to_local
),
compare1
);
sizeof
(
pg_utf_to_local
),
compare1
);
...
...
This diff is collapsed.
Click to expand it.
src/bin/psql/mbprint.c
+
5
−
5
View file @
0c2c061e
...
@@ -3,7 +3,7 @@
...
@@ -3,7 +3,7 @@
*
*
* Copyright (c) 2000-2007, PostgreSQL Global Development Group
* Copyright (c) 2000-2007, PostgreSQL Global Development Group
*
*
* $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.2
7
2007/11/1
5 23:23:4
4 momjian Exp $
* $PostgreSQL: pgsql/src/bin/psql/mbprint.c,v 1.2
8
2007/11/1
6 01:11:0
4 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
...
@@ -246,7 +246,7 @@ pg_wcssize(unsigned char *pwcs, size_t len, int encoding, int *result_width,
...
@@ -246,7 +246,7 @@ pg_wcssize(unsigned char *pwcs, size_t len, int encoding, int *result_width,
linewidth
+=
4
;
linewidth
+=
4
;
format_size
+=
4
;
format_size
+=
4
;
}
}
else
/*
Output it as-is */
else
/* Output it as-is */
{
{
linewidth
+=
w
;
linewidth
+=
w
;
format_size
+=
1
;
format_size
+=
1
;
...
@@ -257,7 +257,7 @@ pg_wcssize(unsigned char *pwcs, size_t len, int encoding, int *result_width,
...
@@ -257,7 +257,7 @@ pg_wcssize(unsigned char *pwcs, size_t len, int encoding, int *result_width,
linewidth
+=
6
;
/* \u0000 */
linewidth
+=
6
;
/* \u0000 */
format_size
+=
6
;
format_size
+=
6
;
}
}
else
/*
All other chars */
else
/* All other chars */
{
{
linewidth
+=
w
;
linewidth
+=
w
;
format_size
+=
chlen
;
format_size
+=
chlen
;
...
@@ -321,7 +321,7 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
...
@@ -321,7 +321,7 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
linewidth
+=
4
;
linewidth
+=
4
;
ptr
+=
4
;
ptr
+=
4
;
}
}
else
/*
Output it as-is */
else
/* Output it as-is */
{
{
linewidth
+=
w
;
linewidth
+=
w
;
*
ptr
++
=
*
pwcs
;
*
ptr
++
=
*
pwcs
;
...
@@ -343,7 +343,7 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
...
@@ -343,7 +343,7 @@ pg_wcsformat(unsigned char *pwcs, size_t len, int encoding,
ptr
+=
6
;
ptr
+=
6
;
linewidth
+=
6
;
linewidth
+=
6
;
}
}
else
/*
All other chars */
else
/* All other chars */
{
{
int
i
;
int
i
;
...
...
This diff is collapsed.
Click to expand it.
src/tools/pgindent/pgindent
+
6
−
5
View file @
0c2c061e
#!/bin/sh
#!/bin/sh
# $PostgreSQL: pgsql/src/tools/pgindent/pgindent,v 1.9
4
2007/11/1
5 23:23:4
4 momjian Exp $
# $PostgreSQL: pgsql/src/tools/pgindent/pgindent,v 1.9
5
2007/11/1
6 01:11:0
4 momjian Exp $
# Known bugs:
# Known bugs:
#
#
...
@@ -46,9 +46,10 @@ do
...
@@ -46,9 +46,10 @@ do
# 'else' followed by a single-line comment, followed by
# 'else' followed by a single-line comment, followed by
# a brace on the next line confuses BSD indent, so we push
# a brace on the next line confuses BSD indent, so we push
# the comment down to the next line, then later pull it
# the comment down to the next line, then later pull it
# back up again.
# back up again. Add space before PGMV or indent will add
# it for us.
sed
's;\([} ]\)else[ ]*\(/\*\)\(.*\*/\)[ ]*$;\1else\
sed
's;\([} ]\)else[ ]*\(/\*\)\(.*\*/\)[ ]*$;\1else\
\2PG
INDENT_MOVED
\3;g'
|
\2
PG
MV
\3;g'
|
# Indent multi-line after-'else' comment so BSD indent will move it properly.
# Indent multi-line after-'else' comment so BSD indent will move it properly.
# We already moved down single-line comments above. Check for '*' to make
# We already moved down single-line comments above. Check for '*' to make
...
@@ -2243,10 +2244,10 @@ do
...
@@ -2243,10 +2244,10 @@ do
{
{
if (NR != 1)
if (NR != 1)
{
{
if ($0 ~ "/\*PG
INDENT_MOVED
")
if ($0 ~ "/\*
PG
MV
")
{
{
# remove tag
# remove tag
sub("PG
INDENT_MOVED
", "", $0);
sub("
PG
MV
", "", $0);
# remove leading whitespace
# remove leading whitespace
sub("^[ ]*", "", $0);
sub("^[ ]*", "", $0);
# add comment with single tab prefix
# add comment with single tab prefix
...
...
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