Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-11-20 | Bruce's octet_length change breaks this regression test. | Tom Lane | |
2001-11-20 | Add mention of template1 usage. | Bruce Momjian | |
2001-11-20 | Some minor tweaks of REINDEX processing: grab exclusive lock a littleREL7_2_BETA3 | Tom Lane | |
earlier, make error checks more uniform. | |||
2001-11-20 | Simplify pg_convert() in that it calls pg_convert2 using new fmgr interface. | Tatsuo Ishii | |
2001-11-20 | Double quotes in ln command to guard against spaces in path. | Tom Lane | |
2001-11-19 | Change 'return ;' to 'return;'; remove space. | Bruce Momjian | |
2001-11-19 | Indent jdbc case labels using pgjindent. | Bruce Momjian | |
2001-11-19 | More jdbc comment cleanups. Code looks very nice now. | Bruce Momjian | |
2001-11-19 | Update pgindent README so it gets *.java.in files. | Bruce Momjian | |
2001-11-19 | JDBC indenting, comment cleanups. | Bruce Momjian | |
2001-11-19 | Tweak format_type so that we get good behavior for both column type | Tom Lane | |
display (with a typemod) and function arg/result type display (without a typemod). | |||
2001-11-19 | Fix arg coerect match text type, per Tom. | Bruce Momjian | |
2001-11-19 | Make text octet_length() return non-compressed length to be consistent | Bruce Momjian | |
with other data types, per disucssion. Encoding issue still open. | |||
2001-11-19 | Grammatical and spelling fixes. | Tom Lane | |
2001-11-19 | Fix nasty bugs in pg_convert() and pg_convert2(). | Tatsuo Ishii | |
o they sometimes returns a result garbage string appended. o they do not work if client encoding is different from server encoding | |||
2001-11-19 | Fix comment at top of file to match file name. | Hiroshi Inoue | |
2001-11-19 | pg_restore should exit with status 0, not 1, on success. | Tom Lane | |
2001-11-19 | A bunch of small doco updates motivated by scanning the comments on | Tom Lane | |
the interactive docs. | |||
2001-11-18 | Add example of using 'sameuser' followed by 'all' pg_hba records to | Tom Lane | |
enforce a limit on who can connect to databases other than their own. From a recent discussion in pg-admin. | |||
2001-11-18 | Improve comments about duplicate files. | Bruce Momjian | |
2001-11-18 | Optimization for bpcharlen, textlen, varcharlen in case of single byte | Tatsuo Ishii | |
encodings. | |||
2001-11-17 | Fix performance problems in TOAST compressor. The management of | Tom Lane | |
search lists was broken in such a way that only the most recent instance of a given hash code would ever be searched, thus possibly missing longer matches further back. Fixing this gave 5 to 10% compression improvement on some text test cases. Additional small tweaks to improve speed of inner loops a little bit. There is no compatibility issue created by this change, since the compressed data format and decompression algorithm don't change. | |||
2001-11-16 | IsSystemRelationName() treats TOAST relations as system relations. | Tom Lane | |
This seems the right thing for most usages, but I notice two places where it is the wrong thing. One is that the default permissions on TOAST rels should be no-access, not world-readable; the other is that PrepareForTupleInvalidation doesn't really need to spend time looking at tuples of TOAST relations. | |||
2001-11-16 | Add missing prototype. | Bruce Momjian | |
2001-11-16 | Add configure result checks on odbc, per Peter E. | Bruce Momjian | |
2001-11-16 | plpython security and error handling fixes, from | Tom Lane | |
Kevin Jacobs and Brad McLean. | |||
2001-11-16 | Once again, Michael has overwritten someone else's patch ... | Tom Lane | |
2001-11-16 | Make the yacc rules safe for parallel make. See discussion on pgsql-patches | Peter Eisentraut | |
and comment in src/backend/parser/Makefile for the technical details. | |||
2001-11-16 | Remove 'triggered data change violation' error check, per recent | Tom Lane | |
discussions in pghackers. | |||
2001-11-16 | Committed again to add the missing files/patches. | Michael Meskes | |
2001-11-16 | Change SQLDescribeCol so that it returns alias name properly. | Hiroshi Inoue | |
2001-11-16 | Update keyword lists per suggestions by Peter. There are now four | Tom Lane | |
mutually exclusive keyword lists spanning all known keywords --- including AS. Moved COALESCE and a few other ColLabels into the can-be-ColId list. | |||
2001-11-15 | Fix some problems in new plpgsql cursor operations, found while trying | Tom Lane | |
to reverse-engineer documentation for them. | |||
2001-11-15 | Well the absolute correct solution would involve all of: | Bruce Momjian | |
int8, int16, int32, int64 and separately uint8, uint16, uint32, uint64 The previous patch grouped: int8, int16 and int32 uint8, uint16 and uint32 int64 and uint64 <-- this grouping is wrong on AIX 4.3.3 and below If you prefer to make 4 groups out of this you could apply this patch. Andreas | |||
2001-11-15 | Update md5.h because it can't get the value from configure. | Bruce Momjian | |
2001-11-15 | Fix for AIX compile and unsigned/signed typedefs. | Bruce Momjian | |
Peter E, Tatsuo, Andreas | |||
2001-11-15 | Only use RTLD_GLOBAL when available, which it isn't in older releases of the OS. | Peter Eisentraut | |
2001-11-15 | Fix comment at top of file to match file name. | Bruce Momjian | |
2001-11-14 | fixes getIndex to work with forte's transparent persistence | Dave Cramer | |
2001-11-14 | Added Christof's patches. | Michael Meskes | |
2001-11-14 | Attached is a patch against the CVS repository that fixes the ResultSet ↵ | Barry Lind | |
absolute() problem. There's also a little fix for the getRow() method. While fixing absolute(), I noticed that getRow() wasn't quite following the spec: it wasn't returning 0 when the ResultSet wasn't positioned on a row. I've started a ResultSet test case and included it as well. Liam Stewart | |||
2001-11-13 | Update CVS tags. | Bruce Momjian | |
2001-11-13 | Use better CVS tag. | Bruce Momjian | |
2001-11-13 | Remove md5.c check, add CVS log stamp. Update comments. | Bruce Momjian | |
2001-11-13 | Give a more intelligible and useful error message for SELECT with no | Tom Lane | |
destination in plpgsql. | |||
2001-11-12 | Tweak parser so that there is a defined representation for datatypes | Tom Lane | |
bpchar, bit, numeric with typmod -1. Alter format_type so that this representation is printed when the typmod is -1. This ensures that tables having such columns can be pg_dump'd and reloaded correctly. Also, remove the rather useless and non-SQL-compliant default precision and scale for type NUMERIC. A numeric column declared as such (with no precision/scale) will now have typmod -1 which means that numeric values of any precision/scale can be stored in it, without conversion to a uniform scale. This seems significantly more useful than the former behavior. Part of response to bug #513. | |||
2001-11-12 | If the alternatives for a CASE construct all have the same typmod, | Tom Lane | |
use that typmod not -1 as the typmod of the CASE result. Part of response to bug#513. | |||
2001-11-12 | If the inputs of a UNION/INTERSECT/EXCEPT construct all agree on the | Tom Lane | |
typmod of a particular column, mark the output with that same typmod, not -1 as formerly. -1 is still used if there is any disagreement. Part of response to bug#513. | |||
2001-11-12 | fixed bug in ResultSet. Version 1.29 backed out two previous fixes (1.26 ↵ | Barry Lind | |
and 1.25). This checkin add back those two previous fixes. Problem reported by Daniel Germain | |||
2001-11-12 | Commit to support MD5 passwords as per the backend for 7.2. This patch was ↵ | Barry Lind | |
submitted by Jeremy Wohl jeremyw-pgjdbc@igmus.org |