summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2001-11-21Add a few new time zones, and list every time zone mentioned in myThomas G. Lockhart
Linux box's time zone database. Do not allow 'current' as a date/time input value.
2001-11-21Repair swapped sign for time minus time routine (time_mi_time()).Thomas G. Lockhart
Problem reported by Manuel Sugawara (masm@fciencias.unam.mx).
2001-11-21Allow 'PostgreSQL' as a date/time formatting style. Formerly, recognizedThomas G. Lockhart
'Postgres' only, but now accepts both.
2001-11-21I think it's patch's size problem that I can'tBruce Momjian
send patches to pgsql-patches list. the zh_CN NLS patch is about 80K, but sended twice and still can emerge on list. so I've put it at: http://laser.zhengmai.com.cn/download/zh_CN.po.diff.tar.gz If possible, please download it and apply it. (for current CVS). regards laser
2001-11-21// -> /* */, per Tatsuo.Bruce Momjian
2001-11-20Bruce's octet_length change breaks this regression test.Tom Lane
2001-11-20Add mention of template1 usage.Bruce Momjian
2001-11-20Some minor tweaks of REINDEX processing: grab exclusive lock a littleREL7_2_BETA3Tom Lane
earlier, make error checks more uniform.
2001-11-20Simplify pg_convert() in that it calls pg_convert2 using new fmgr interface.Tatsuo Ishii
2001-11-20Double quotes in ln command to guard against spaces in path.Tom Lane
2001-11-19Change 'return ;' to 'return;'; remove space.Bruce Momjian
2001-11-19Indent jdbc case labels using pgjindent.Bruce Momjian
2001-11-19More jdbc comment cleanups. Code looks very nice now.Bruce Momjian
2001-11-19Update pgindent README so it gets *.java.in files.Bruce Momjian
2001-11-19JDBC indenting, comment cleanups.Bruce Momjian
2001-11-19Tweak format_type so that we get good behavior for both column typeTom Lane
display (with a typemod) and function arg/result type display (without a typemod).
2001-11-19Fix arg coerect match text type, per Tom.Bruce Momjian
2001-11-19Make text octet_length() return non-compressed length to be consistentBruce Momjian
with other data types, per disucssion. Encoding issue still open.
2001-11-19Grammatical and spelling fixes.Tom Lane
2001-11-19Fix 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-19Fix comment at top of file to match file name.Hiroshi Inoue
2001-11-19pg_restore should exit with status 0, not 1, on success.Tom Lane
2001-11-19A bunch of small doco updates motivated by scanning the comments onTom Lane
the interactive docs.
2001-11-18Add example of using 'sameuser' followed by 'all' pg_hba records toTom Lane
enforce a limit on who can connect to databases other than their own. From a recent discussion in pg-admin.
2001-11-18Improve comments about duplicate files.Bruce Momjian
2001-11-18Optimization for bpcharlen, textlen, varcharlen in case of single byteTatsuo Ishii
encodings.
2001-11-17Fix performance problems in TOAST compressor. The management ofTom 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-16IsSystemRelationName() 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-16Add missing prototype.Bruce Momjian
2001-11-16Add configure result checks on odbc, per Peter E.Bruce Momjian
2001-11-16plpython security and error handling fixes, fromTom Lane
Kevin Jacobs and Brad McLean.
2001-11-16Once again, Michael has overwritten someone else's patch ...Tom Lane
2001-11-16Make the yacc rules safe for parallel make. See discussion on pgsql-patchesPeter Eisentraut
and comment in src/backend/parser/Makefile for the technical details.
2001-11-16Remove 'triggered data change violation' error check, per recentTom Lane
discussions in pghackers.
2001-11-16Committed again to add the missing files/patches.Michael Meskes
2001-11-16Change SQLDescribeCol so that it returns alias name properly.Hiroshi Inoue
2001-11-16Update keyword lists per suggestions by Peter. There are now fourTom 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-15Fix some problems in new plpgsql cursor operations, found while tryingTom Lane
to reverse-engineer documentation for them.
2001-11-15Well 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-15Update md5.h because it can't get the value from configure.Bruce Momjian
2001-11-15Fix for AIX compile and unsigned/signed typedefs.Bruce Momjian
Peter E, Tatsuo, Andreas
2001-11-15Only use RTLD_GLOBAL when available, which it isn't in older releases of the OS.Peter Eisentraut
2001-11-15Fix comment at top of file to match file name.Bruce Momjian
2001-11-14fixes getIndex to work with forte's transparent persistenceDave Cramer
2001-11-14Added Christof's patches.Michael Meskes
2001-11-14Attached 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-13Update CVS tags.Bruce Momjian
2001-11-13Use better CVS tag.Bruce Momjian
2001-11-13Remove md5.c check, add CVS log stamp. Update comments.Bruce Momjian
2001-11-13Give a more intelligible and useful error message for SELECT with noTom Lane
destination in plpgsql.