- Oct 13, 2001
-
-
Bruce Momjian authored
-
- Oct 12, 2001
-
-
Tatsuo Ishii authored
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.
-
Tom Lane authored
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.
-
- Oct 11, 2001
-
-
Tom Lane authored
-
Tatsuo Ishii authored
-
- Oct 10, 2001
-
-
Peter Eisentraut authored
regarding timezone_hour, timezone_minute vs. tz_hour, tz_minute. Document the former.
-
Peter Eisentraut authored
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.
-
- Oct 09, 2001
-
-
Tom Lane authored
-
Tom Lane authored
rather than having its own somewhat half-baked notion of what a type declaration looks like. This is necessary now to ensure that plpgsql will think a 'timestamp' variable has the same semantics as 'timestamp' does in the main SQL grammar; and it should avoid divergences in future.
-
- Oct 08, 2001
-
-
Tom Lane authored
for nested typecasts. It now produces a column header of 'timestamptz' for 'SELECT CURRENT_TIMESTAMP', rather than 'text' as it was doing for awhile there.
-
Tom Lane authored
transforming CASE expressions. This was definitely confusing FigureColname, and might lead to bad things elsewhere as well.
-
Tom Lane authored
copy of code that knows about displaying types with typmod info. Needed so that it does the right thing with timestamp datatypes now.
-
Tom Lane authored
refer to the renamed column. Brent Verner, with a little help from tgl.
-
Tom Lane authored
agree with CURRENT_TIME(n).
-
- Oct 07, 2001
-
-
Tom Lane authored
lookup info in the relcache for index access method support functions. This makes a huge difference for dynamically loaded support functions, and should save a few cycles even for built-in ones. Also tweak dfmgr.c so that load_external_function is called only once, not twice, when doing fmgr_info for a dynamically loaded function. All per performance gripe from Teodor Sigaev, 5-Oct-01.
-
- Oct 05, 2001
-
-
Bruce Momjian authored
and modified from Simplified Chinese translations for backend, pgsql, pg_dump and libpq. I've appended their names to zh_TW.po. forth
-
Tom Lane authored
readability. Bizarre '(long *) TRUE' return convention is gone, in favor of just raising an error internally in dynahash.c when we detect hashtable corruption. HashTableWalk is gone, in favor of using hash_seq_search directly, since it had no hope of working with non-LONGALIGNable datatypes. Simplify some other code that was made undesirably grotty by promixity to HashTableWalk.
-
Bruce Momjian authored
> > thus I ask you to apply the following patch, to make it work. Zeugswetter Andreas SB SD
-
Thomas G. Lockhart authored
per Jan Varga <varga@utcru.sk> Fix up spacing and formatting.
-
Thomas G. Lockhart authored
Use CAST() mechanism to define CURRENT_TIME and CURRENT_TIMESTAMP.
-
Tom Lane authored
type coercion after failing to find an exact match in pg_proc, but before considering interpretations that involve a function call with one or more argument type coercions. This avoids surprises wherein what looks like a type coercion is interpreted as coercing to some third type and then to the destination type, as in Dave Blasby's bug report of 3-Oct-01. See subsequent discussion in pghackers.
-
Tom Lane authored
index opclasses; they might be default for some other datatype, in which case we mustn't suppress 'em.
-
- Oct 04, 2001
-
-
Tom Lane authored
From Teodor Sigaev.
-
Tom Lane authored
but timestamp now wants it to mean something.
-
Tom Lane authored
-
Bruce Momjian authored
translation, the attachement is those four files. (.tar.gz file, with the directory, root is $PGSRC). Tested on some Linux platform. Weiping He
-
Bruce Momjian authored
NLS effort for the 'postgresql' component. It includes 'ru.po', which should be added to /src/backend/po/ and a typical patch for nls.mk with the 'ru' entry added in the AVAIL_LANGUAGES. I'll submit a patch with more translations for pg_dump once CVSweb becomes available. CVSweb for me right now is the only way to get to the source code until my system is completely setup by the end of the week. -- Serguei A. Mokhov
-
Tom Lane authored
-
Tom Lane authored
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
- Oct 03, 2001
-
-
Tom Lane authored
format strings wherever possible. Remarkably, this exercise didn't turn up any inconsistencies, but it seems a good idea for the future.
-
Tom Lane authored
'aggname (aggtype)'. The old syntax 'aggname aggtype' is still accepted for backwards compatibility. Fix pg_dump, which was actually broken for most cases of user-defined aggregates. Clean up error messages associated with these commands.
-
Tom Lane authored
psql's \d option work properly.
-
Tom Lane authored
-
Tom Lane authored
-infinity and +infinity. Put TIMESTAMP_NOT_FINITE guard into the routine, instead of forgetting it at some call sites. Fixes regression test failures here.
-
Thomas G. Lockhart authored
time zones. SQL99 spec requires a default of zero (round to seconds) which is set in gram.y as typmod is set in the parse tree. We *could* change to a default of either 6 (for internal compatibility with previous versions) or 2 (for external compatibility with previous versions). Evaluate entries in pg_proc wrt the iscachable attribute for timestamp and other date/time types. Try to recognize cases where side effects like the current time zone setting may have an effect on results to decide whether something is cachable or not.
-
- Oct 02, 2001