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
81d9a967
Commit
81d9a967
authored
Oct 25, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add comment spaces for trailing ) and comment.
parent
cae059ba
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
HISTORY
HISTORY
+11
-3
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+1
-1
No files found.
HISTORY
View file @
81d9a967
...
...
@@ -132,8 +132,7 @@ 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
New postgresql.conf to set maximum open files (Tom)
Types
-----
...
...
@@ -147,7 +146,12 @@ 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)
Measure transaction times in milliseconds (Thomas)
now() returns time in milliseconds (Thomas)
New TIMEZONE WITHOUT TIMEZONE data types (Thomas)
Add ISO date/time specification with 'T', yyyy-mm-ddThh:mm:ss (Thomas)
New xid/int comparison functions (Hiroshi)
Fix TID sequential scans (H
Performance
-----------
Optimizer improvements (Tom)
...
...
@@ -156,6 +160,9 @@ Reuse write-ahead log files rather than discarding them (Tom)
Cache improvements (Tom)
IS NULL, IS NOT NULL optimizer improvement (Tom)
Load pg_hba.conf only on startup and SIGHUP (Bruce)
Rtree performance improvements (Kenneth Been)
Improve lock manager to reduce lock contention (Tom)
Btree splits more efficient (Tom)
Interfaces
----------
...
...
@@ -174,6 +181,7 @@ JDBC
Encoding fixes (Anders Bengtsson)
Get/setCatalog methods (Jason Davies)
Databasemetadata.getColumns() now returns column defaults (Jason Davies)
Databasemetadata.getColumn() performance improvement (Jeroen van Vianen)
Jdbc1 and jdbc2 merging (Anders Bengtsson)
Transaction performance improvements (Barry Lind)
Array fixes (Greg Zoller)
...
...
src/tools/pgindent/pgindent
View file @
81d9a967
...
...
@@ -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 \2:'
|
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