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
cae059ba
Commit
cae059ba
authored
Oct 25, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add spacing for single-line comments with trailing semicolon _and_
comma, per Tom.
parent
b6b028c7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
46 additions
and
29 deletions
+46
-29
HISTORY
HISTORY
+45
-28
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+1
-1
No files found.
HISTORY
View file @
cae059ba
...
...
@@ -65,7 +65,7 @@ PL/pgSQL memory leak fix (Jan, Tom)
Fix nested EXCEPT/INTERSECT (Tom)
Python fix fetchone() (Gerhard Haring)
ECPG fixes (Michael, Christof Petig)
PL/PgSQL trailing semicolon optional (Tom)
Enhancements
------------
...
...
@@ -124,6 +124,16 @@ Allow ALTER TABLE ADD UNIQUE (Christopher Kings-Lynne)
Super-user id now defaults to 1 (Peter E)
Reject invalid multibyte character sequences (Tatsuo)
New libpq PQescapeString() function to escape query strings (Florian Weimer)
New EXPLAIN ANALYZE command that shows runtimes and tuple counts (Martijn
van Oosterhout)
New postgresql.conf option to enable/disable "col = NULL" comparisons
(Peter E)
New postgresql.conf parameter to control memory usage by VACUUM (Tom)
New postgresql.conf time out parameter for client authentication (Tom)
New pg_ctl 'reload' option (Tom)
Add /contrib/intarray boolean queries, fixes (Oleg Bartunov)
Measure transaction times in milliseconds (Thomas)
'NOW' returns time in milliseconds
Types
-----
...
...
@@ -133,7 +143,10 @@ BIT, BIT VARYING now returns error on too long input (Peter E)
New function bit_length() (Peter E)
inet, cidr text conversion functions (Alex Pilosov)
inet, cidr operators << and <<= indexable (Alex Pilosov)
Bytea comparison improvements (Joe Conway)
Bytea comparison improvements, \### now requires three octal digits (Joe Conway)
Make trim/ltrim/rtrim/btrim/lpad/rpad/translate() multibyte aware (Tatsuo)
Add pg_database_encoding_max_length() (Tatsuo)
Make mic2ascii() non-ASCII aware (Tatsuo)
Performance
-----------
...
...
@@ -147,39 +160,42 @@ Load pg_hba.conf only on startup and SIGHUP (Bruce)
Interfaces
----------
JDBC
r
eturn oid of INSERT (Ken K)
h
ande more data types (Ken K)
h
andle single quotes and newlines in strings (Ken K)
h
andle NULL variables (Ken K)
f
ix for timezone handling (Barry Lind)
R
eturn oid of INSERT (Ken K)
H
ande more data types (Ken K)
H
andle single quotes and newlines in strings (Ken K)
H
andle NULL variables (Ken K)
F
ix for timezone handling (Barry Lind)
Improved Druid support
Allow eight-bit characters with non-multibyte server (Barry Lind)
s
upport BIT, BINARY types (Ned Wolpert)
r
educe memory usage (Michael Stephens, Dave Cramer)
u
pdate DatabaseMetaData (Peter E)
a
dd DatabaseMetaData.getCatalogs() (Peter E)
e
ncoding fixes (Anders Bengtsson)
g
et/setCatalog methods (Jason Davies)
Database
MetaD
ata.getColumns() now returns column defaults (Jason Davies)
j
dbc1 and jdbc2 merging (Anders Bengtsson)
t
ransaction performance improvements (Barry Lind)
a
rray fixes (Greg Zoller)
S
upport BIT, BINARY types (Ned Wolpert)
R
educe memory usage (Michael Stephens, Dave Cramer)
U
pdate DatabaseMetaData (Peter E)
A
dd DatabaseMetaData.getCatalogs() (Peter E)
E
ncoding fixes (Anders Bengtsson)
G
et/setCatalog methods (Jason Davies)
Database
metad
ata.getColumns() now returns column defaults (Jason Davies)
J
dbc1 and jdbc2 merging (Anders Bengtsson)
T
ransaction performance improvements (Barry Lind)
A
rray fixes (Greg Zoller)
Serialize addition
f
ix batch processing (Ren? Pijlman)
F
ix batch processing (Ren? Pijlman)
ExecSQL method reorganization (Anders Bengtsson)
g
etColumn() fixes (Jeroen van Vianen)
f
ix isWriteable() function (Ren? Pijlman)
G
etColumn() fixes (Jeroen van Vianen)
F
ix isWriteable() function (Ren? Pijlman)
Improved passage of jdbc2 conformance tests (Ren? Pijlman)
Add bytea type capability (Barry Lind)
Add isNullable() (Rene Pijlman)
JDBC date/time test suite fixes (Liam Stewart)
ODBC
r
emove query limit (Hiroshi)
r
emove text field size limit (Hiroshi)
f
ix for SQLPrimaryKeys() (Hiroshi)
p
rocedure calls (Hiroshi)
R
emove query limit (Hiroshi)
R
emove text field size limit (Hiroshi)
F
ix for SQLPrimaryKeys() (Hiroshi)
P
rocedure calls (Hiroshi)
FETCH first fix (Aidan Mountford)
u
pdatable cursors (Hiroshi)
U
pdatable cursors (Hiroshi)
Most configure options on setable via DSN (Hiroshi)
multibyte, performance fixes (Hiroshi)
Multibyte, performance fixes (Hiroshi)
Allow driver to be used with iODBC or unixODBC (Peter E)
ECPG
EXECUTE ... INTO ... implemented
multiple row descriptor support (e.g. CARDINALITY)
...
...
@@ -207,12 +223,12 @@ Remove EXTEND INDEX (Martijn van Oosterhout, Tom)
Correct description of translate() function (Bruce)
/contrib/fulltextindex fixes (Christopher Kings-Lynne)
Fix for Win32 socket communication failures (Magnus, Mikhail Terekhov)
/contrib/intarray fixes (Oleg Bartunov)
Hurd compile fix (Oliver Elphick)
New /contrib/fuzzystrmatch with lievnshtein and metaphone, soundex merged (Joe Conway)
Beos fixes (Cyril VELTER)
Remove OID's from some system tables (Tom)
New functions in /contrib/pgcrypto: crypt(), hmac(), encrypt() (Marko Kreen)
New functions in /contrib/pgcrypto: crypt(), hmac(), encrypt(), gen_salt()
(Marko Kreen)
System table operator reorganization (Oleg Bartunov, Teodor Sigaev, Tom)
Rename config.h to pg_config.h (Peter E)
pg_log now pg_clog (Tom)
...
...
@@ -225,6 +241,7 @@ Better cleanup for semaphore resource failure (Tatsuo, Tom)
Remove compile-time limit on number of backends (Tom)
Enable SIGTERM, SIGQUIT to kill backends (Jan)
New pgjindent utility to indent java code (Bruce)
Replace strcasecmp() with strcmp() where appropriate (Peter E)
...
...
src/tools/pgindent/pgindent
View file @
cae059ba
...
...
@@ -1292,7 +1292,7 @@ int pgindent_func_no_var_fix;\
# pull in #endif comments
sed
's;^#endif[ ][ ]*/\*;#endif /*;'
|
# add space after comments that start on tab stops
sed
's
,;\(/\*.*\*/\)$,; \1,
'
|
sed
's
:\([;,]\)/\*.*\*/\)$:\1 \2:
'
|
# work around #else indenting next line if #ifdef defines variables at top
# work around misindenting of function with no variables defined
awk
'
...
...
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