Bruce Momjian
4baaf863ec
Update copyright for 2015
...
Backpatch certain files through 9.0
11 years ago
Bruce Momjian
0a78320057
pgindent run for 9.4
...
This includes removing tabs after periods in C comments, which was
applied to back branches, so this change should not effect backpatching.
12 years ago
Bruce Momjian
7e04792a1c
Update copyright for 2014
...
Update all files in head, and files COPYRIGHT and legal.sgml in all back
branches.
12 years ago
Bruce Momjian
bd61a623ac
Update copyrights for 2013
...
Fully update git head, and update back branches in ./COPYRIGHT and
legal.sgml files.
13 years ago
Bruce Momjian
e126958c2e
Update copyright notices for year 2012.
14 years ago
Bruce Momjian
5d950e3b0c
Stamp copyrights for year 2011.
15 years ago
Magnus Hagander
9f2e211386
Remove cvs keywords from all files.
15 years ago
Bruce Momjian
0239800893
Update copyright for the year 2010.
16 years ago
Bruce Momjian
511db38ace
Update copyright for 2009.
17 years ago
Bruce Momjian
9098ab9e32
Update copyrights in source tree to 2008.
18 years ago
Tom Lane
234a02b2a8
Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).
...
Get rid of VARATT_SIZE and VARATT_DATA, which were simply redundant with
VARSIZE and VARDATA, and as a consequence almost no code was using the
longer names. Rename the length fields of struct varlena and various
derived structures to catch anyplace that was accessing them directly;
and clean up various places so caught. In itself this patch doesn't
change any behavior at all, but it is necessary infrastructure if we hope
to play any games with the representation of varlena headers.
Greg Stark and Tom Lane
19 years ago
Bruce Momjian
29dccf5fe0
Update CVS HEAD for 2007 copyright. Back branches are typically not
...
back-stamped for this.
19 years ago
Neil Conway
7992d0fbca
Remove a few places that attempted to define INT_MAX, SCHAR_MAX, and
...
similar constants if they were not previously defined. All these
constants must be defined by limits.h according to C89, so we can
safely assume they are present.
20 years ago
Bruce Momjian
f2f5b05655
Update copyright for 2006. Update scripts.
20 years ago
Bruce Momjian
1dc3498251
Standard pgindent run for 8.1.
20 years ago
PostgreSQL Daemon
2ff501590b
Tag appropriate files for rc3
...
21 years ago
Tom Lane
6c61af6654
Remove arithmetic operators on the 1-byte-char datatype, as per proposals
...
made several times in the past. Add coercion functions between "char"
and integer so that a workaround is possible if needed.
Initdb forced.
22 years ago
Bruce Momjian
da9a8649d8
Update copyright to 2004.
22 years ago
PostgreSQL Daemon
969685ad44
$Header: -> $PostgreSQL Changes ...
22 years ago
Bruce Momjian
f3c3deb7d0
Update copyrights to 2003.
23 years ago
Bruce Momjian
089003fb46
pgindent run.
23 years ago
Tom Lane
b6a1d25b0a
Error message editing in utils/adt. Again thanks to Joe Conway for doing
...
the bulk of the heavy lifting ...
23 years ago
Tom Lane
30f609484d
Add binary I/O routines for a bunch more datatypes. Still a few to go,
...
but that was enough tedium for one day. Along the way, move the few
support routines for types xid and cid into a more logical place.
23 years ago
Tom Lane
31e69ccb21
Add explicit tests for division by zero to all user-accessible integer
...
division and modulo functions, to avoid problems on OS X (which fails to
trap 0 divide at all) and Windows (which traps it in some bizarre
nonstandard fashion). Standardize on 'division by zero' as the one true
spelling of this error message. Add regression tests as suggested by
Neil Conway.
23 years ago
Bruce Momjian
d84fe82230
Update copyright to 2002.
24 years ago
Bruce Momjian
b81844b173
pgindent run on all C files. Java run to follow. initdb/regression
...
tests pass.
25 years ago
Tom Lane
8a3b80deb0
Make text <=> char conversion functions convert zero character to and
...
from an empty text string. This makes them consistent with the de facto
behavior of type char's I/O conversion functions, and avoids generating
text values with embedded nulls, which confuse many text operators.
25 years ago
Bruce Momjian
623bf843d2
Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.
25 years ago
Jan Wieck
57d8080a40
TOAST
...
WARNING: This is actually broken - we have self-deadlocks
due to concurrent changes in buffer management.
Vadim and me are working on it.
Jan
26 years ago
Tom Lane
48165ec226
Latest round of fmgr updates. All functions with bool,char, or int2
...
inputs have been converted to newstyle. This should go a long way towards
fixing our portability problems with platforms where char and short
parameters are passed differently from int-width parameters. Still
more to do for the Alpha port however.
26 years ago
Bruce Momjian
5c25d60244
Add:
...
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc
to all files copyright Regents of Berkeley. Man, that's a lot of files.
26 years ago
Bruce Momjian
3406901a29
Move some system includes into c.h, and remove duplicates.
27 years ago
Bruce Momjian
a71802e12e
Final cleanup.
27 years ago
Bruce Momjian
4b2c2850bf
Clean up #include in /include directory. Add scripts for checking includes.
27 years ago
Bruce Momjian
0cf1b79528
Cleanup of /include #include's, for 6.6 only.
27 years ago
Bruce Momjian
07842084fe
pgindent run over code.
27 years ago
Bruce Momjian
6724a50787
Change my-function-name-- to my_function_name, and optimizer renames.
27 years ago
Thomas G. Lockhart
239564e9ef
Add routines to help with single-byte (internal) character type support.
27 years ago
Bruce Momjian
af74855a60
Renaming cleanup, no pgindent yet.
28 years ago
Bruce Momjian
0d203b745d
Re-apply Darren's char2-16 removal code.
28 years ago
Bruce Momjian
db21523314
Back out char2-char16 removal. Add later.
28 years ago
Bruce Momjian
57b5966405
The following uuencoded, gzip'd file will ...
...
1. Remove the char2, char4, char8 and char16 types from postgresql
2. Change references of char16 to name in the regression tests.
3. Rename the char16.sql regression test to name.sql. 4. Modify
the regression test scripts and outputs to match up.
Might require new regression.{SYSTEM} files...
Darren King
28 years ago
Bruce Momjian
a32450a585
pgindent run before 6.3 release, with Thomas' requested changes.
28 years ago
Vadim B. Mikheev
32cd09ac6d
Good Bye, Time Travel!
29 years ago
Thomas G. Lockhart
0d6facbad6
Modify one last line to complete changes for StrNCpy() macro addition.
...
Before, char16 was missing last character for output.
29 years ago
Bruce Momjian
f3af1368bd
Rename strNcpy to StrNCpy, and change third parameter.
29 years ago
Bruce Momjian
59f6a57e59
Used modified version of indent that understands over 100 typedefs.
29 years ago
Bruce Momjian
075cede748
Add typdefs to pgindent run.
29 years ago
Bruce Momjian
319dbfa736
Another PGINDENT run that changes variable indenting and case label indenting. Also static variable indenting.
29 years ago
Bruce Momjian
1ccd423235
Massive commit to run PGINDENT on all *.c and *.h files.
29 years ago