Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Allow blanks at the end of numerical values. | Michael Meskes | 2003-07-17 | |
| | ||||
* | Fixed some bugs in Informix compat functions. | Michael Meskes | 2003-07-17 | |
| | ||||
* | Make EXTRACT(TIMEZONE) and SET/SHOW TIMEZONE follow the SQL convention | Tom Lane | 2003-07-17 | |
| | | | | | | for the sign of timezone offsets, ie, positive is east from UTC. These were previously out of step with other operations that accept or show timezones, such as I/O of timestamptz values. | |||
* | Add defenses against trying to attach qual conditions to a setOperation | Tom Lane | 2003-07-16 | |
| | | | | | | query node, since that won't work unless the planner is upgraded. Someday we should try to support at least some cases of this, but for now just plug the hole in the dike. Per discussion with Dmitry Tkach. | |||
* | Applied patch to fix two compatibility functions. | Michael Meskes | 2003-07-16 | |
| | ||||
* | Now that I look, SHOW TRANSACTION_ISOLATION isn't quite consistent | Tom Lane | 2003-07-15 | |
| | | | | with SET TRANSACTION_ISOLATION, either. | |||
* | Cause SHOW DATESTYLE to produce a string that will be accepted by SET | Tom Lane | 2003-07-15 | |
| | | | | | | DATESTYLE, for instance 'SQL, European' instead of 'SQL with European conventions'. Per gripe a month or two back from Barry Lind. | |||
* | Avoid use of int64_t, which seems not to be very portable. Simplify | Tom Lane | 2003-07-15 | |
| | | | | | padding logic for struct sockaddr_storage --- original version did not do what it claimed to when SALEN is defined. | |||
* | OSF supports pthreads, per Philip Yarra. | Tom Lane | 2003-07-15 | |
| | ||||
* | Started to create different error codes for different backend messages. | Michael Meskes | 2003-07-15 | |
| | ||||
* | Tweak original coding so that we can determine the platform-specific | Tom Lane | 2003-07-15 | |
| | | | | | | | | shared_buffers and max_connections values to use before we run the bootstrap process. Without this, initdb would fail on platforms where the hardwired default values are too large. (We could get around that by making the hardwired defaults tiny, perhaps, but why slow down bootstrap by starving it for buffers...) | |||
* | Remove duplicate definition of ERROR. | Tom Lane | 2003-07-14 | |
| | ||||
* | Make cost estimates for SubqueryScan more realistic: charge cpu_tuple_cost | Tom Lane | 2003-07-14 | |
| | | | | | for each row processed, and don't forget the evaluation cost of any restriction clauses attached to the node. Per discussion with Greg Stark. | |||
* | Fix typo in comment, as noted by Weiping He. | Tom Lane | 2003-07-14 | |
| | ||||
* | The default values for shared_buffers and max_connections are now 1000 | Tom Lane | 2003-07-14 | |
| | | | | | | | | | and 100 respectively, if the platform will allow it. initdb selects values that are not too large to allow the postmaster to start, and places these values in the installed postgresql.conf file. This allows us to continue to start up out-of-the-box on platforms with small SHMMAX, while having somewhat-realistic default settings on platforms with reasonable SHMMAX. Per recent pghackers discussion. | |||
* | Whoops, missed committing this change to match cosmetic changes in | Tom Lane | 2003-07-14 | |
| | | | | ascii.c. | |||
* | Fix a *second* buffer overrun bug in to_ascii(). Grumble. | Tom Lane | 2003-07-14 | |
| | ||||
* | Missed one rule in syncinc preproc.y which resulted in reduce/reduce conflicts. | Michael Meskes | 2003-07-14 | |
| | ||||
* | - Synced preproc.y with gram.y | Michael Meskes | 2003-07-14 | |
| | | | | | - Init sqlca in ECPGprepare(). - Added CLOSE DATABASE for Informix compatibility. | |||
* | Add description for new GUC context. | Bruce Momjian | 2003-07-09 | |
| | | | | Aizaz Ahmed | |||
* | Argh! Missed one file. | Michael Meskes | 2003-07-09 | |
| | ||||
* | Fixed some Informix compat functions so they handle NULL resp. indicators ↵ | Michael Meskes | 2003-07-09 | |
| | | | | better. | |||
* | Doc update for LOG_MIN_DURATION_STATEMENT set to zero. | Bruce Momjian | 2003-07-09 | |
| | ||||
* | Add special checks for non-super-user setting LOG_MIN_DURATION_STATEMENT | Bruce Momjian | 2003-07-09 | |
| | | | | to zero. | |||
* | Add new USERLIMIT GUC source level so certain options can be disabled | Bruce Momjian | 2003-07-09 | |
| | | | | | | | or increased only by super-users. This fixes problems caused by making certain variables SUSET for security reasons. | |||
* | Applied patch from Kim Ho @ redhat.com to make support for setObject() more | Barry Lind | 2003-07-09 | |
| | | | | | | | | spec complient with regards to various data/time/timestamp objects Modified Files: jdbc/org/postgresql/errors.properties jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java | |||
* | More informix fixes. | Michael Meskes | 2003-07-08 | |
| | ||||
* | Fix segfault in connect in informix mode. | Michael Meskes | 2003-07-08 | |
| | ||||
* | "char *" of course is not the same as "char []". So I had to fix the way ↵ | Michael Meskes | 2003-07-07 | |
| | | | | ecpg treated the second one. | |||
* | tm2timestamp should return -1, not elog, on overflow. (In the backend | Tom Lane | 2003-07-04 | |
| | | | | | this is merely an API inconsistency, but in ecpg it's fatal.) Also, fix misconceived overflow test in HAVE_INT64_TIMESTAMP case. | |||
* | Fix missing code for HAVE_INT64_TIMESTAMP. | Tom Lane | 2003-07-04 | |
| | ||||
* | Add --help-config facility to dump information about GUC parameters | Tom Lane | 2003-07-04 | |
| | | | | | | without needing a running backend. Reorder postgresql.conf.sample to match new layout of runtime.sgml. This commit re-adds work lost in Wednesday's crash. | |||
* | Add #include <limits.h> (re-add lost change from Wednesday). | Tom Lane | 2003-07-04 | |
| | ||||
* | date, interval and timestamp data should be quoted. | Michael Meskes | 2003-07-04 | |
| | ||||
* | Fixed informix behaviour for select without into. | Michael Meskes | 2003-07-04 | |
| | ||||
* | Some early work on error message editing. Operator-not-found and | Tom Lane | 2003-07-04 | |
| | | | | | function-not-found messages now distinguish the cases no-match and ambiguous-match, and they follow the style guidelines too. | |||
* | Fix bug I introduced in recent rewrite of NUMERIC code: numeric to | Tom Lane | 2003-07-03 | |
| | | | | | integer conversions gave the wrong answer for values with stripped trailing zeroes, such as 10000000. | |||
* | Do honest transformation and preprocessing of LIMIT/OFFSET clauses, | Tom Lane | 2003-07-03 | |
| | | | | | | | | instead of the former kluge whereby gram.y emitted already-transformed expressions. This is needed so that Params appearing in these clauses actually work correctly. I suppose some might claim that the side effect of 'SELECT ... LIMIT 2+2' working is a new feature, but I say this is a bug fix. | |||
* | Code review for UPDATE tab SET col = DEFAULT patch ... whack it around | Tom Lane | 2003-07-03 | |
| | | | | so it has some chance of working in rules ... | |||
* | Fixed initialization bug and added postgres_fe.h to pgtypeslib. | Michael Meskes | 2003-07-02 | |
| | ||||
* | Support polymorphic functions in plpgsql. Along the way, replace | Tom Lane | 2003-07-01 | |
| | | | | | linked-list search of function cache with hash-table lookup. By Joe Conway. | |||
* | Fix ecpg typo --- change ;; to ;. | Bruce Momjian | 2003-07-01 | |
| | ||||
* | Aggregates can be polymorphic, using polymorphic implementation functions. | Tom Lane | 2003-07-01 | |
| | | | | | | It also works to create a non-polymorphic aggregate from polymorphic functions, should you want to do that. Regression test added, docs still lacking. By Joe Conway, with some kibitzing from Tom Lane. | |||
* | Dept. of second thoughts: supporting inlining of polymorphic SQL functions | Tom Lane | 2003-07-01 | |
| | | | | | takes only a few more lines of code than preventing it, so might as well support it. | |||
* | Fix documentation comment about restricted environments, per Kevin Jacobs. | Tom Lane | 2003-07-01 | |
| | ||||
* | STRENGH => STRENGTH, per Jon Jensen. | Tom Lane | 2003-07-01 | |
| | ||||
* | Use ISO dates in pgtypeslib by default. | Michael Meskes | 2003-07-01 | |
| | | | | | | | Applied patch by Philip Yarra to fix some thread issues. Added a new data type "decimal" which is mostly the same as our "numeric" but uses a fixed length array to store the digits. This is for compatibility with Informix and maybe others. | |||
* | Department of second thoughts: even if we can't run the full parser on | Tom Lane | 2003-07-01 | |
| | | | | | a SQL function with polymorphic inputs, we can at least run the raw parser to catch silly syntactic errors. | |||
* | Translation update | Peter Eisentraut | 2003-07-01 | |
| | ||||
* | SQL functions can have arguments and results declared ANYARRAY or | Tom Lane | 2003-07-01 | |
| | | | | | | | | ANYELEMENT. The effect is to postpone typechecking of the function body until runtime. Documentation is still lacking. Original patch by Joe Conway, modified to postpone type checking by Tom Lane. |