- 22 Aug, 2002 10 commits
-
-
Bruce Momjian authored
> > is a patch to add some cross-referencing. Oliver Elphick
-
Bruce Momjian authored
constraints The issue with finding and removing foreign key constraints is no longer an issue, so please apply the attached. It does NOT check for rules or on delete triggers (old style foreign keys) as those are difficult to deal with (remove, truncate, re-add). Rod Taylor
-
Bruce Momjian authored
> * Allow bytea to handle LIKE with non-TEXT patterns
-
Bruce Momjian authored
bytealike to TEXT. This leaves like_escape_bytea() without anything to do, but I left it in place in anticipation of the eventual bytea pattern selectivity functions. If there is agreement that this would be the best long term solution, I'll take it as a TODO for 7.4. Joe Conway
-
Bruce Momjian authored
-
Bruce Momjian authored
replace(string, from, to) -- replaces all occurrences of "from" in "string" to "to" split(string, fldsep, column) -- splits "string" on "fldsep" and returns "column" number piece to_hex(int32_num) & to_hex(int64_num) -- takes integer number and returns as hex string Joe Conway
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Marc G. Fournier authored
Okay, libpq++ is moved to GBorg, and all traces of it have been removed from the core repository ... I haven't *moved* the libpq++ files out of the tree, mainly as we want to keep them in place for past branches ... Peter, I think I've covered all the files I need, and re-ran autoconf to make sure the configure file is in place properly ...
-
Tom Lane authored
with OPAQUE, as per recent pghackers discussion. I still want to do some more work on the 'cstring' pseudo-type, but I'm going to commit the bulk of the changes now before the tree starts shifting under me ...
-
- 21 Aug, 2002 6 commits
-
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 20 Aug, 2002 12 commits
-
-
Tom Lane authored
-
Peter Eisentraut authored
Use off_t and size_t in pg_dump to handle file offset arithmetic correctly.
-
Tom Lane authored
code is broken, but any small change in the output format might overrun the buffer with the old size.
-
Tom Lane authored
From Rod Taylor.
-
Bruce Momjian authored
FOUND is set whenever a SELECT INTO returns > 0 rows, *or* when an INSERT, UPDATE, or DELETE affects > 0 rows. We implemented the first part of this behavior, but not the second. I also improved the documentation on the various situations in which FOUND can be set (excluding inside FOR loops, which I still need to think about), and added some regression tests for this behavior. Neil Conway
-
Bruce Momjian authored
-
Bruce Momjian authored
- don't fail type-sanity checks if a domain exists Rod Taylor
-
Bruce Momjian authored
Christopher Kings-Lynne
-
Bruce Momjian authored
Add current_database(). > Quick system function to pull out the current database. > > I've used this a number of times to allow stored procedures to find out > where they are. Especially useful for those that do logging or hit a > remote server. > > It's called current_database() to match with current_user(). It's also a necessity for an informational schema. The catalog (database) name is required in a number of places. Rod Taylor
-
Barry Lind authored
for the last two releases. Modified Files: jdbc/org/postgresql/Driver.java.in jdbc/org/postgresql/PG_Stream.java Removed Files: jdbc/org/postgresql/core/BytePoolDim1.java jdbc/org/postgresql/core/BytePoolDim2.java jdbc/org/postgresql/core/MemoryPool.java jdbc/org/postgresql/core/ObjectPool.java jdbc/org/postgresql/core/SimpleObjectPool.java
-
Bruce Momjian authored
-
Bruce Momjian authored
> * -Make other constraints clearer in dump file
-
- 19 Aug, 2002 7 commits
-
-
Tom Lane authored
cause SERIAL column declaration not to imply UNIQUE, so that this can be done without creating an extra index.
-
Tom Lane authored
latent wrong-struct-type bugs and makes the coding style more uniform, since the majority of places working with lists of column names were already using Strings not Idents. While at it, remove vestigial support for Stream node type, and otherwise-unreferenced nodes.h entries for T_TupleCount and T_BaseNode. NB: full recompile is recommended due to changes of Node type numbers. This shouldn't force an initdb though.
-
Tatsuo Ishii authored
It pfree() wrong pointer.
-
Tatsuo Ishii authored
-
Tom Lane authored
required changes to copyfuncs/equalfuncs.
-
Tom Lane authored
been missing forever; surprising it wasn't noticed before. The other additions are, um, sloppiness in certain recent feature additions.
-
Tom Lane authored
-
- 18 Aug, 2002 5 commits
-
-
Tom Lane authored
-
Tom Lane authored
Bruno Wolff.
-
Tom Lane authored
when two equal() targetlist items were to be added to an ORDER BY or DISTINCT list. Although indeed this would make sorting fractionally faster by sometimes saving a comparison, it confuses the heck out of later stages of processing, because it makes it look like the user wrote DISTINCT ON rather than DISTINCT. Bug reported by joe@piscitella.com.
-
Peter Eisentraut authored
master and slave tables.
-
Peter Eisentraut authored
The -n and -N options were removed. Quoting is now smart enough to supply quotes if and only if necessary. Numerical types are now printed without quotes, except in cases of special values such as NaN. Boolean values printed as true and false. Most string literals now do not escape whitespace characters (newlines, etc.) for portability. SET SESSION AUTHORIZATION argument is a string literal, to follow SQL. Made commands output by pg_dump use consistent spacing and indentation.
-