- Jan 10, 2000
-
-
Bruce Momjian authored
-
- Jan 09, 2000
-
-
Tatsuo Ishii authored
postmaster/postmaster.c so that tcop/postgres.c can use them. Now we have an interlock between postmaster and postgres.
-
Tom Lane authored
code cleanup; no major improvements yet. However, EXPLAIN does produce more intuitive outputs for nested loops with indexscans now...
-
- Jan 07, 2000
-
-
Bruce Momjian authored
still without answer. I want continue with to_char(), but I need any answer for this patch. Please. Thank! (and sorry of my impatient :-) Karel
-
- Jan 06, 2000
- Jan 05, 2000
-
-
Bruce Momjian authored
-
- Jan 04, 2000
-
-
Thomas G. Lockhart authored
1) datetime_pl_span() added the seconds field before adding the months field. This lead to erroneous results for e.g. select datetime '1999-11-30' + timespan '1 mon - 1 sec'; Reverse the order of operations to add months first. 2) tm2timespan() did all intermediate math as integer, converting to double at the very end. This resulted in hidden overflows when given very large integer days, hours, etc. For example, select '74565 days'::timespan; produced the wrong result. Change code to ensure that doubles are used for intermediate calculations. Thanks to Olivier PRENANT <ohp@pyrenet.fr> and Tulassay Zsolt <zsolt@tek.bke.hu> for problem reports and to Tom Lane for accurate analyses.
-
- Jan 02, 2000
-
-
Bruce Momjian authored
-
Bruce Momjian authored
to be Y2K safe.
-
- Dec 31, 1999
-
-
Tom Lane authored
-
Tom Lane authored
during InitProcessingMode and the CurrentTransactionState was neither TRANS_DEFAULT nor TRANS_DISABLED. Unfortunately, after someone's recent change to start the transaction manager earlier in startup than it used to be started, that caused an abort() and consequent database system reset on quite harmless errors (such as rejecting an invalid user name!). As far as I can see, the test on CurrentTransactionState was completely useless anyway, so I've removed it.
-
- Dec 30, 1999
-
-
Tom Lane authored
relcache entry no longer leaks a small amount of memory. index_endscan now releases all the memory acquired by index_beginscan, so callers of it should NOT pfree the scan descriptor anymore.
-
- Dec 28, 1999
-
-
Jan Wieck authored
Jan
-
- Dec 24, 1999
-
-
Tom Lane authored
SELECT null::text; SELECT int4fac(null); work as expected now. In some cases a NULL must be surrounded by parentheses: SELECT 2 + null; fails SELECT 2 + (null); OK This is a grammatical ambiguity that seems difficult to avoid. Other than that, NULLs seem to behave about like you'd expect. The internal implementation is that NULL constants are typed as UNKNOWN (like untyped string constants) until the parser can deduce the right type.
-
- Dec 22, 1999
-
-
Hiroshi Inoue authored
to live in a transaction before access to db during backend startup.
-
- Dec 21, 1999
-
-
Bruce Momjian authored
with DEC C. DEC C doesn't handle double values greater than DBL_MAX, but some PostgreSQL geo functions assign greater than DBL_MAX values to some vars in some special cases - that couses SIGFPE. I dunno if that is the only place to fix to work well with DEC C. Kirill Nosov.
-
- Dec 20, 1999
- Dec 16, 1999
-
-
Jan Wieck authored
Jan
-
Bruce Momjian authored
equality. The lobits macro is wrong and extracts the wrong set of bits out of the structure. To exhibit the problem: select '000000:000000'::macaddr = '000000:110000'::macaddr ; ?column? -------- t (1 row) Daniel Boyd
-
- Dec 13, 1999
-
-
Bruce Momjian authored
-
Tom Lane authored
Note this forces initdb because of change of Aggref node in stored rules.
-
- Dec 10, 1999
-
-
Jan Wieck authored
time qualification of HeapTupleSatisfiesSnapshot() Jan
-
Tatsuo Ishii authored
-
Bruce Momjian authored
-
- Dec 09, 1999
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
I was able to crash postgres 6.5.3 when I did an 'alter user' command. After I started a debugger I found the problem in the timezone handling of datetime (my Linux box lost its timezone information, that's how the problem occurred). Only 7 bytes are reserved for the timezone, without checking for boundaries. Attached is a patch that fixes this problem and emits a NOTICE if a timezone is encountered that is longer than MAXTZLEN bytes, like this: Jeroen van Vianen
-
- Dec 08, 1999
-
-
Jan Wieck authored
Jan
-
- Dec 07, 1999
- Dec 06, 1999
- Nov 25, 1999
-
-
Bruce Momjian authored
-
Jan Wieck authored
comparision functions. Added all lztext comparision functions, operators and a default operator class for nbtree on lztext. Jan
-
Bruce Momjian authored
-
Bruce Momjian authored
-