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
3231341e
Commit
3231341e
authored
Oct 25, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add slash for comment spacing, for Tom.
parent
81d9a967
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
6 deletions
+26
-6
HISTORY
HISTORY
+25
-5
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+1
-1
No files found.
HISTORY
View file @
3231341e
...
@@ -82,7 +82,8 @@ Have psql \d display indexes in unique, primary groupings (Christopher Kings-Lyn
...
@@ -82,7 +82,8 @@ Have psql \d display indexes in unique, primary groupings (Christopher Kings-Lyn
Improve PL/pgSQL error reporting (Tom)
Improve PL/pgSQL error reporting (Tom)
Add DROP CONSTRAINT for CHECK constraints (Christopher Kings-Lynne)
Add DROP CONSTRAINT for CHECK constraints (Christopher Kings-Lynne)
PL/pgSQL Allow IS and FOR in cursors (Bruce)
PL/pgSQL Allow IS and FOR in cursors (Bruce)
Native language error messages, psql, pg_dump, libpq, configure --enable-nls (Peter E)
Native language error messages, psql, pg_dump, libpq, configure --enable-nls
(Peter E, Serguei A. Mokhov, Weiping He, Forth)
Allow NULL to appear at beginning/end based on ORDER BY (Tom)
Allow NULL to appear at beginning/end based on ORDER BY (Tom)
Add %TYPE capability to CREATE TYPE (Ian Lance Taylor)
Add %TYPE capability to CREATE TYPE (Ian Lance Taylor)
Truncate extra-long sequence names to a reasonable value (Tom)
Truncate extra-long sequence names to a reasonable value (Tom)
...
@@ -131,8 +132,12 @@ New postgresql.conf option to enable/disable "col = NULL" comparisons
...
@@ -131,8 +132,12 @@ New postgresql.conf option to enable/disable "col = NULL" comparisons
New postgresql.conf parameter to control memory usage by VACUUM (Tom)
New postgresql.conf parameter to control memory usage by VACUUM (Tom)
New postgresql.conf time out parameter for client authentication (Tom)
New postgresql.conf time out parameter for client authentication (Tom)
New pg_ctl 'reload' option (Tom)
New pg_ctl 'reload' option (Tom)
Add /contrib/intarray boolean queries, fixes (Oleg Bartunov)
Add /contrib/intarray boolean queries,
binary search,
fixes (Oleg Bartunov)
New postgresql.conf to set maximum open files (Tom)
New postgresql.conf to set maximum open files (Tom)
New CREATE OR REPLACE FUNCTION that preserves function oid (Gavin Sherry)
DROP AGGREGATE and COMMENT ON AGGREGATE now accept an aggtype (Tom)
Prevent output of default index op class in pg_dump (Tom)
Allow trailing semicolons in psql backslash commands (Greg Sabino Mullane)
Types
Types
-----
-----
...
@@ -140,18 +145,27 @@ CHAR(n)/VARCHAR(n) represents letters, not bytes (Tatsuo)
...
@@ -140,18 +145,27 @@ CHAR(n)/VARCHAR(n) represents letters, not bytes (Tatsuo)
CHAR(), VARCHAR() now returns error on storage of too long string (Peter E)
CHAR(), VARCHAR() now returns error on storage of too long string (Peter E)
BIT, BIT VARYING now returns error on too long input (Peter E)
BIT, BIT VARYING now returns error on too long input (Peter E)
New function bit_length() (Peter E)
New function bit_length() (Peter E)
inet, cidr
text conversion functions (Alex Pilosov)
INET, CIDR
text conversion functions (Alex Pilosov)
inet, cidr
operators << and <<= indexable (Alex Pilosov)
INET, CIDR
operators << and <<= indexable (Alex Pilosov)
Bytea comparison improvements, \### now requires three octal digits (Joe Conway)
Bytea comparison improvements, \### now requires three octal digits (Joe Conway)
Make trim/ltrim/rtrim/btrim/lpad/rpad/translate() multibyte aware (Tatsuo)
Make trim/ltrim/rtrim/btrim/lpad/rpad/translate() multibyte aware (Tatsuo)
Add pg_database_encoding_max_length() (Tatsuo)
Add pg_database_encoding_max_length() (Tatsuo)
Add pg_client_encoding() function (Tatsuo)
Make mic2ascii() non-ASCII aware (Tatsuo)
Make mic2ascii() non-ASCII aware (Tatsuo)
Measure transaction times in milliseconds (Thomas)
Measure transaction times in milliseconds (Thomas)
now() returns time in milliseconds (Thomas)
now() returns time in milliseconds (Thomas)
New TIMEZONE WITHOUT TIMEZONE data types (Thomas)
New TIMEZONE WITHOUT TIMEZONE data types (Thomas)
Add ISO date/time specification with 'T', yyyy-mm-ddThh:mm:ss (Thomas)
Add ISO date/time specification with 'T', yyyy-mm-ddThh:mm:ss (Thomas)
New xid/int comparison functions (Hiroshi)
New xid/int comparison functions (Hiroshi)
Fix TID sequential scans (H
Fix TID sequential scans (Hiroshi)
Add precision to TIME and TIMESTAMP data types (Thomas)
Cachability fixes (Thomas, Tom)
PL/TCL now reports errorInfo (Vsevolod Lobko)
Modify type coersion logic to attempt binary-compatible functions first (Tom)
Allow optional () after current_user, session_user, user, etc. (Peter E)
Add compatibility functions to odbc.sql (Peter E)
Force new password prompt when changing user and database in psql (Tatsuo, Tom)
Performance
Performance
-----------
-----------
Optimizer improvements (Tom)
Optimizer improvements (Tom)
...
@@ -163,6 +177,9 @@ Load pg_hba.conf only on startup and SIGHUP (Bruce)
...
@@ -163,6 +177,9 @@ Load pg_hba.conf only on startup and SIGHUP (Bruce)
Rtree performance improvements (Kenneth Been)
Rtree performance improvements (Kenneth Been)
Improve lock manager to reduce lock contention (Tom)
Improve lock manager to reduce lock contention (Tom)
Btree splits more efficient (Tom)
Btree splits more efficient (Tom)
Dynahash portability improvements (Tom)
Keep relcache entries for index access support functions (Tom)
Make ALTER TABLE RENAME COLUMN update column names of indexes (Brent Verner)
Interfaces
Interfaces
----------
----------
...
@@ -194,6 +211,7 @@ JDBC
...
@@ -194,6 +211,7 @@ JDBC
Add bytea type capability (Barry Lind)
Add bytea type capability (Barry Lind)
Add isNullable() (Rene Pijlman)
Add isNullable() (Rene Pijlman)
JDBC date/time test suite fixes (Liam Stewart)
JDBC date/time test suite fixes (Liam Stewart)
Fix for SELECT 'id' AS xxx FROM table (Dave Cramer)
ODBC
ODBC
Remove query limit (Hiroshi)
Remove query limit (Hiroshi)
Remove text field size limit (Hiroshi)
Remove text field size limit (Hiroshi)
...
@@ -250,6 +268,8 @@ Remove compile-time limit on number of backends (Tom)
...
@@ -250,6 +268,8 @@ Remove compile-time limit on number of backends (Tom)
Enable SIGTERM, SIGQUIT to kill backends (Jan)
Enable SIGTERM, SIGQUIT to kill backends (Jan)
New pgjindent utility to indent java code (Bruce)
New pgjindent utility to indent java code (Bruce)
Replace strcasecmp() with strcmp() where appropriate (Peter E)
Replace strcasecmp() with strcmp() where appropriate (Peter E)
Remove configure --enable-pltcl-utf option
Make PL/PgSQL use the backends type coersion code (Tom)
...
...
src/tools/pgindent/pgindent
View file @
3231341e
...
@@ -1292,7 +1292,7 @@ int pgindent_func_no_var_fix;\
...
@@ -1292,7 +1292,7 @@ int pgindent_func_no_var_fix;\
# pull in #endif comments
# pull in #endif comments
sed
's;^#endif[ ][ ]*/\*;#endif /*;'
|
sed
's;^#endif[ ][ ]*/\*;#endif /*;'
|
# add space after comments that start on tab stops
# 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 #else indenting next line if #ifdef defines variables at top
# work around misindenting of function with no variables defined
# work around misindenting of function with no variables defined
awk
'
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