- 25 Aug, 2000 2 commits
-
-
Tatsuo Ishii authored
pg_mb2wchar(const unsigned char *, pg_wchar *); pg_mb2wchar_with_len(const unsigned char *, pg_wchar *, int); from void to int. Now they return the number of wide chars.
-
Peter Eisentraut authored
(rather than compile time). For libpq, even when Kerberos support is compiled in, the default user name should still fall back to geteuid() if it can't be determined via the Kerberos system. A couple of fixes for string type configuration parameters, now that there is one.
-
- 24 Aug, 2000 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
Datum, not char*, for portability's sake.
-
Tom Lane authored
-
Tom Lane authored
for example, an SQL function can be used in a functional index. (I make no promises about speed, but it'll work ;-).) Clean up and simplify handling of functions returning sets.
-
- 23 Aug, 2000 4 commits
-
-
Thomas G. Lockhart authored
-
Thomas G. Lockhart authored
Remove hardcoded macaddr_manuf(), which had really old, obsolete info. Replace this with some contrib/mac/ code to maniag OUI info from IEEE.
-
Thomas G. Lockhart authored
(Organizationally Unique Identifiers). This is the manufacturer's code in the MAC address.
-
Thomas G. Lockhart authored
but were missing the "mailto:" prefix. Fix typo. Thanks to Neil Conway <nconway@klamath.dyndns.org> for the heads-up.
-
- 22 Aug, 2000 6 commits
-
-
Tom Lane authored
newlines.
-
Tatsuo Ishii authored
multibyte sequence while truncating identifiers.
-
Tatsuo Ishii authored
incorrect multibyte sequence while truncating too long names.
-
Tatsuo Ishii authored
Eliminate up-to-4-times memory allocation problem
-
Tom Lane authored
right circumstances a hash join executed as a DECLARE CURSOR/FETCH query would crash the backend. Problem as seen in current sources was that the hash tables were stored in a context that was a child of TransactionCommandContext, which got zapped at completion of the FETCH command --- but cursor cleanup executed at COMMIT expected the tables to still be valid. I haven't chased down the details as seen in 7.0.* but I'm sure it's the same general problem.
-
Tom Lane authored
-
- 21 Aug, 2000 4 commits
-
-
Tom Lane authored
pg_proc.c (where it's actually used). Fix it to correctly handle tlists that contain resjunk target items, and improve error messages. This addresses bug reported by Krupnikov 6-July-00.
-
Tom Lane authored
Also, make it depend on type OIDs rather than type names for more consistency with rest of backend.
-
Tom Lane authored
macros where appropriate (the code used to have several different ways of doing that, including Int32, Int8, UInt8, ...). Remove last few references to float32 and float64 typedefs --- it's all float4/float8 now. The typedefs themselves should probably stay in c.h for a release or two, though, to avoid breaking user-written C functions.
-
Tom Lane authored
Update functions to new-style fmgr, make BIT and VARBIT be binary- equivalent, add entries to allow these types to be btree indexed, correct a few bugs. BIT/VARBIT are now toastable, too. NOTE: initdb forced due to catalog updates.
-
- 20 Aug, 2000 5 commits
-
-
Tom Lane authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
PGLIB or use any option anymore.
-
Peter Eisentraut authored
unsupported platforms.
-
Tom Lane authored
CREATE INDEX fooi ON foo (lower(f1)) where f1 is varchar rather than text.
-
- 19 Aug, 2000 1 commit
-
-
Peter Eisentraut authored
reported by Mark Hollomon
-
- 13 Aug, 2000 1 commit
-
-
Tom Lane authored
right thing with variable-free clauses that contain noncachable functions, such as 'WHERE random() < 0.5' --- these are evaluated once per potential output tuple. Expressions that contain only Params are now candidates to be indexscan quals --- for example, 'var = ($1 + 1)' can now be indexed. Cope with RelabelType nodes atop potential indexscan variables --- this oversight prevents 7.0.* from recognizing some potentially indexscanable situations.
-
- 12 Aug, 2000 2 commits
- 11 Aug, 2000 4 commits
-
-
Tom Lane authored
-
Tom Lane authored
including utility statements. Still can't copy or compare executor state, but at present that doesn't seem to be necessary. This makes it possible to execute most (all?) utility statements in plpgsql. Had to change parsetree representation of CreateTrigStmt so that it contained only legal Nodes, and not bare string constants.
-
Tom Lane authored
first place :-(
-
Tom Lane authored
backwards compatibility with old behavior.
-
- 10 Aug, 2000 1 commit
-
-
Hiroshi Inoue authored
are running.
-
- 09 Aug, 2000 1 commit
-
-
Thomas G. Lockhart authored
-
- 08 Aug, 2000 2 commits
-
-
Tom Lane authored
from Param nodes, per discussion a few days ago on pghackers. Add new expression node type FieldSelect that implements the functionality where it's actually needed. Clean up some other unused fields in Func nodes as well. NOTE: initdb forced due to change in stored expression trees for rules.
-
Philip Warner authored
-
- 07 Aug, 2000 2 commits
-
-
Tom Lane authored
as MaxHeapAttributeNumber. Increase MaxAttrSize to something more reasonable (given what it's used for, namely checking char(n) declarations, I didn't make it the full 1G that it could theoretically be --- 10Mb seemed a more reasonable number). Improve calculation of MaxTupleSize.
-
Tom Lane authored
-