Tom Lane
7e16f3c0d8
PostgreSQL works again on Mac OS X 10.1. Hold your nose before
...
investigating the kluge that makes it so...
24 years ago
Tom Lane
64af43a15f
Add casts to suppress compiler warnings observed on Darwin platform
...
(surprised no one has reported these yet...)
24 years ago
Bruce Momjian
c6e25ed1af
Fix replacement of extern C string.
24 years ago
Bruce Momjian
1233d4fd6c
Fix typo.
24 years ago
Bruce Momjian
e644fc25c7
Prevent indenting of 'extern "C"' blocks.
24 years ago
Bruce Momjian
a69833c583
Mention new =NULL change in Migration section.
24 years ago
Bruce Momjian
75df678ffa
Update TODO list.
24 years ago
Bruce Momjian
96f7ef4caf
Fix wrapping.
24 years ago
Bruce Momjian
2dba7fdb4b
Correct, not too ambitious, not too
...
long for an enhancement history item? :)
--
Serguei A. Mokhov
~
24 years ago
Bruce Momjian
e7c788f3a0
Some post pgident run updates,
...
one fuzzy translation fix, some
other messages tweaking. Theoretically,
should be up-to-date by now.
Please apply to /src/interfaces/libpq/ru.po
--
Serguei A. Mokhov
24 years ago
Bruce Momjian
3e5e73ec3b
Update TODO list.
24 years ago
Tom Lane
4a3bf197eb
Add some notes about conditional rules used with views.
24 years ago
Bruce Momjian
f688c1e064
Update TODO list.
24 years ago
Bruce Momjian
62298f60b2
Add mention of another MySQL conversion tool.
24 years ago
PostgreSQL Daemon
845846bc43
tag'd and branded as b2 ...
24 years ago
Tom Lane
27e7ac190e
Update for latest version of horology test.
24 years ago
Tom Lane
d22e9456a7
Clean up formatting of child process exit-status reports so that they
...
are correct, consistent, and complete ... motivated by gripe from
Oliver Elphick, but I see someone had already made an incomplete stab
at this.
24 years ago
Thomas G. Lockhart
d2ff7e509c
Fix last (?) problem with sensitivity to daylight savings time status
...
when running the regression test. Reported by Tom Lane.
24 years ago
Thomas G. Lockhart
3ea311d4b3
Add British Double Standard Time (BDST) per mailing list report.
24 years ago
Thomas G. Lockhart
e160fcd696
Use PostgreSQL's standard declaration for a 32-bit integer to define
...
the cash data type.
24 years ago
Tom Lane
d980ddb544
Add Darwin to list of known systems for ps_status.
24 years ago
Tom Lane
ca7578d454
The extra semaphore that proc.c now allocates for checkpoint processes
...
should be accounted for in the PROC_SEM_MAP_ENTRIES() macro. Otherwise
the ports that rely on this macro to size data structures are broken.
Mea culpa.
24 years ago
Tom Lane
0053cebea5
Fix coredump in plpgsql when trying to return a rowtype result.
...
Need to return a TupleTableSlot, not just a bare tuple.
24 years ago
Bruce Momjian
ea08e6cd55
New pgindent run with fixes suggested by Tom. Patch manually reviewed,
...
initdb/regression tests pass.
24 years ago
Hiroshi Inoue
34153b2052
Preparation for the parameter array handling.
24 years ago
Hiroshi Inoue
c0b27c4feb
1) Fix a few bugs about SQLGetData()
...
reported by Mika Mantyla.
2) Timestamp precision.
3) Separate ODBC3.0 files.
24 years ago
Bruce Momjian
0f450dae8b
More cleanup for stuff after closing brace in first column.
24 years ago
Bruce Momjian
d447dbf392
Handle tabs after closing brace in first column with less indenting.
24 years ago
Bruce Momjian
158129be72
Improve readability of script.
24 years ago
Tom Lane
5251e7b3d0
CREATE TABLE foo (x,y,z) AS SELECT ... can't apply target column names
...
to the target list in gram.y; it must wait till after expansion of the
target list in analyze.c. Per bug report 4-Nov:
lx=# CREATE TABLE abc (a char, b char, c char);
CREATE
lx=# CREATE TABLE xyz (x, y, z) AS SELECT * FROM abc;
ERROR: CREATE TABLE/AS SELECT has mismatched column count
24 years ago
Tom Lane
d556920a98
Remove ill-considered Assert.
24 years ago
Bruce Momjian
3bb110ebb3
Pull in variables defined in structs; had too many tabs.
24 years ago
Tom Lane
430cd88a18
Fix now-obsolete comment.
24 years ago
D'Arcy J.M. Cain
568cb6ab5c
Version was 3.3 but last released version was 3.1. Setting to match rest
...
of the documentation in preparation for upcoming release.
24 years ago
Tom Lane
fb5f1b2c13
Merge three existing ways of signaling postmaster from child processes,
...
so that only one signal number is used not three. Flags in shared
memory tell the reason(s) for the current signal. This method is
extensible to handle more signal reasons without chewing up even more
signal numbers, but the immediate reason is to keep pg_pwd reloads
separate from SIGHUP processing in the postmaster.
Also clean up some problems in the postmaster with delayed response to
checkpoint status changes --- basically, it wouldn't schedule a checkpoint
if it wasn't getting connection requests on a regular basis.
24 years ago
D'Arcy J.M. Cain
5f067722bf
Note that PyGreSQL has been checked against Python 2.1 now.
24 years ago
D'Arcy J.M. Cain
6395d86a9a
The "%d", while syntactically correct, was confusing. Added a space to
...
make it clearer that d was the argument to the format operator.
24 years ago
Philip Warner
1ef62bb6fc
- Fix compiler warning in pg_restore
...
- Fix handling of {data/schema}-only restores when using a full
backup file; prior version was restoring schema in data-only
restores. Added enum to make code easier to understand.
24 years ago
Bruce Momjian
7cc8af5563
Got "ADD" to appear only in ALTER TABLE and not CREATE TABLE
...
UNIQUE-PRIMARY KEY notice message. This is what Christopher wanted from
his patch.
24 years ago
Bruce Momjian
434077c4e6
Remove "ADD" from TABLE / ADD UNIQUE-PRIMARY error message because the
...
same code is called for both creation and alter. Not worth worrying
about.
24 years ago
Bruce Momjian
8ee7c19e3c
Require closing paren on line above brace to identify function
...
difinition, just for formatting workaround, per Tom's discovery.
24 years ago
Tom Lane
3d5ddc0b3c
Clean up wrong, misleading, or obsolete documentation about array types,
...
particularly in the CREATE TYPE reference page. Fix some other errors
in the CREATE TYPE page, too.
24 years ago
Bruce Momjian
f008976bcd
More updates for GNU indent.
24 years ago
Hiroshi Inoue
58df3f785e
1) Improve literal handling in parse_statement().
...
2) Remove some no longer valid comments.
3) Fix an option dialog setting bug.
4) Fix ODBCVER handling errors.
24 years ago
Bruce Momjian
ffba91cd1e
Make pgindent use GNU Indent version 2.X better.
24 years ago
Dave Cramer
355cc69dfc
proper select for Jason Davies patch to getImportedKeys
24 years ago
Dave Cramer
0b1289e67d
proper select for Jason Davies patch to getImportedKeys
...
fixes for compiling Jason's getImportedKeys, getExportedKeys
24 years ago
Bruce Momjian
04550d3c90
Add check for 'extern "C"' for pgindent.
24 years ago
Tom Lane
c42d3b3c24
Windows portability macros SOCK_ERRNO and SOCK_STRERROR should be in
...
libpq-int.h, not cluttering application namespace in libpq-fe.h.
24 years ago
Tom Lane
9685afb0b2
Add default expressions to INSERTs during planning, not during parse
...
analysis. This keeps stored rules from prematurely absorbing default
information, which is necessary for ALTER TABLE SET DEFAULT to work
unsurprisingly with rules. See pgsql-bugs discussion 24-Oct-01.
24 years ago