Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Update examples of type coercion rules --- some of them no longer worked | Tom Lane | 2001-10-15 |
| | | | | as the example claimed, because of changes elsewhere in the system. | ||
* | Synchronize with main parser's keyword list (someone didn't check his | Tom Lane | 2001-10-15 |
| | | | | last commit very carefully...) | ||
* | Update FAQ. | Bruce Momjian | 2001-10-14 |
| | |||
* | - Fixed GRANT statement. | Michael Meskes | 2001-10-14 |
| | | | | - Synced preproc.y with gram.y. | ||
* | Make selectivity routines cope gracefully with NaNs, infinities, and | Tom Lane | 2001-10-13 |
| | | | | | NUMERIC values that are out of the range of 'double'. Per trouble report from Mike Quinn. | ||
* | Fix logic in insert() function. | Peter Eisentraut | 2001-10-13 |
| | |||
* | Fixing closed-path intersection logic causes this test to find more | Tom Lane | 2001-10-13 |
| | | | | streets than it used to... | ||
* | path_inter, path_distance, path_length, dist_ppath now do the right | Tom Lane | 2001-10-13 |
| | | | | | things with closed paths --- ie, include the closing line segment in their calculations. Per bug report from Curtis Barrett 9-Oct-01. | ||
* | Add missing prototype to suppress gcc warning. | Tom Lane | 2001-10-13 |
| | |||
* | Residual cleanup from making pltcl unknown support always enabled. | Tom Lane | 2001-10-13 |
| | |||
* | Autoconf. | Tom Lane | 2001-10-13 |
| | |||
* | Update FAQ. | Bruce Momjian | 2001-10-13 |
| | |||
* | More keyword uppercasing. | Bruce Momjian | 2001-10-13 |
| | |||
* | Here are few more translated messages into Russian | Bruce Momjian | 2001-10-13 |
| | | | | | | | | for the PG_DUMP component. Please apply to </src/bin/pg_dump/ru.po> Serguei A. Mokhov | ||
* | Attached patch for unconditional enabling of pltcl-unknown support. | Bruce Momjian | 2001-10-13 |
| | | | | | | | | Enabling this feature adds very light overhead of 1 select from pg_class on first using of pl/tcl in backend if unknown suppport is really unused. But pl/tcl with this support has very improved functionality. Patch includes changes to documentation. | ||
* | Update FAQ. | Bruce Momjian | 2001-10-13 |
| | |||
* | Update FAQ. | Bruce Momjian | 2001-10-13 |
| | |||
* | Mention createlang when language not installed, per problem report. | Bruce Momjian | 2001-10-13 |
| | |||
* | Update FAQ. | Bruce Momjian | 2001-10-13 |
| | |||
* | More uppercasing. | Bruce Momjian | 2001-10-12 |
| | |||
* | Uppercase keywords where appropriate. | Bruce Momjian | 2001-10-12 |
| | |||
* | txtidx datatype for full text indexing with GiST. | Tom Lane | 2001-10-12 |
| | | | | From Oleg Bartunov and Teodor Sigaev. | ||
* | Fix reverse FOR loop to work properly, uppercase cleanup in file. | Bruce Momjian | 2001-10-12 |
| | |||
* | Remove locale/multibyte in HISTORY file, for Tatsuo. | Bruce Momjian | 2001-10-12 |
| | |||
* | Add WAL mmap() mention. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Remove mutex mention. Fixed now. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Update the version of psqlodbc driver. | Hiroshi Inoue | 2001-10-12 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-12 |
| | |||
* | Add a new function "pg_client_encoding" which returns the current client | Tatsuo Ishii | 2001-10-12 |
| | | | | | | side encoding name. This is necessary for client API's such as JDBC to perform correct encoding conversions. See my email "[HACKERS] pg_client_encoding" 10 Sep 2001. | ||
* | Fix the bug reported by Chris Lee. | Hiroshi Inoue | 2001-10-12 |
| | |||
* | Break transformCreateStmt() into multiple routines and make | Tom Lane | 2001-10-12 |
| | | | | | | | | | transformAlterStmt() use these routines, instead of having lots of duplicate (not to mention should-have-been-duplicate) code. Adding a column with a CHECK constraint actually works now, and the tests to reject unsupported DEFAULT and NOT NULL clauses actually fire now. ALTER TABLE ADD PRIMARY KEY works, modulo having to have created the column(s) NOT NULL already. | ||
* | Document use of GEQO param in subquery pullups. | Bruce Momjian | 2001-10-11 |
| | |||
* | Update TODO list. | Bruce Momjian | 2001-10-11 |
| | |||
* | Add documention for ecpg -209 error. | Bruce Momjian | 2001-10-11 |
| | |||
* | Suppress gcc warnings. | Tom Lane | 2001-10-11 |
| | |||
* | Tatsuo Ishii <t-ishii@sra.co.jp> writes: | Bruce Momjian | 2001-10-11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | > As you can see, psql reconnect as any user if the password is same as > foo. Of course this is due to the careless password setting, but I > think it's better to prompt ANY TIME the user tries to switch to > another user. Comments? Yeah, I agree. Looks like a simple change in dbconnect(): /* * Use old password if no new one given (if you didn't have an old * one, fine) */ if (!pwparam && oldconn) pwparam = PQpass(oldconn); to /* * Use old password (if any) if no new one given and we are * reconnecting as same user */ if (!pwparam && oldconn && PQuser(oldconn) && userparam && strcmp(PQuser(oldconn), userparam) == 0) pwparam = PQpass(oldconn); regards, tom lane | ||
* | Update TODO list. | Bruce Momjian | 2001-10-11 |
| | |||
* | Remove mention of "pg_result -list" becuase it is not implemented, per | Bruce Momjian | 2001-10-11 |
| | | | | Tatsuo. | ||
* | Add support for ISO-8859-6 to 16 | Tatsuo Ishii | 2001-10-11 |
| | |||
* | Remove gratuitous discrepancy between extract() and date_part(), | Peter Eisentraut | 2001-10-10 |
| | | | | | regarding timezone_hour, timezone_minute vs. tz_hour, tz_minute. Document the former. | ||
* | Allow optional () after current_user, session_user, user, current_time, | Peter Eisentraut | 2001-10-09 |
| | | | | | | | | | current_timestamp, current_date for ODBC compatibility. Add more functions to odbc.sql catalog extension, use new CREATE OR REPLACE FUNCTION. Document iODBC/unixODBC build options. | ||
* | This patch fixes a bug introduced in the jdbc bytea support patch. | Barry Lind | 2001-10-09 |
| | | | | | | | | | | | | | | That patch broke the ability to read data from binary cursors. --Barry Lind Modified Files: pgsql/src/interfaces/jdbc/org/postgresql/Connection.java pgsql/src/interfaces/jdbc/org/postgresql/ResultSet.java pgsql/src/interfaces/jdbc/org/postgresql/core/QueryExecutor.java pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/Connection.java pgsql/src/interfaces/jdbc/org/postgresql/jdbc1/ResultSet.java pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/Connection.java pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/ResultSet.java pgsql/src/interfaces/jdbc/org/postgresql/jdbc2/UpdateableResultSet.java |