- 10 Jun, 2004 19 commits
-
-
Bruce Momjian authored
extensive change then what was suggested. I found the file path.c that contained a lot of "Unix/Windows" agnostic functions so I added a function there instead and removed the PATHSEP declaration in exec.c altogether. All to keep things from scattering all over the code. I also took the liberty of changing the name of the functions "first_path_sep" and "last_path_sep". Where I come from (and I'm apparently not alone given the former macro name PATHSEP), they should be called "first_dir_sep" and "last_dir_sep". The new function I introduced, that actually finds path separators, is now the "first_path_sep". The patch contains changes on all affected places of course. I also changed the documentation on dynamic_library_path to reflect the chagnes. Thomas Hallgren
-
Bruce Momjian authored
-
Tom Lane authored
when random_page_cost has a small value. Per Manfred Koizar, though I didn't use his equation exactly.
-
Bruce Momjian authored
> * -Print table names with constraint names in error messages, or make constraint
-
Tom Lane authored
-
Tom Lane authored
ALTER TABLE tab ADD COLUMN col SERIAL, but we forgot to install the dependency between the column and the sequence, so the sequence would not go away if you dropped the table later.
-
Bruce Momjian authored
-
Tom Lane authored
sequences, as per recent discussion. All these names are now of the form table_column_type, with digits added if needed to make them unique. Default constraint names are chosen to be unique across their whole schema, not just within the parent object, so as to be more SQL-spec-compatible and make the information schema views more useful.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Bruce Momjian authored
Document limitations.
-
Bruce Momjian authored
< * Allow hash buckets to fill disk pages, rather than being sparse > * Pack hash index buckets onto disk pages more efficiently
-
Bruce Momjian authored
> * Allow pg_dump to use multiple -t and -n switches
-
Bruce Momjian authored
< * Order heap pointers on hash index pages by hash value and ctid > * Allow hash buckets to fill disk pages, rather than being sparse
-
Bruce Momjian authored
Euler Taveira de Oliveira
-
Bruce Momjian authored
> * Order heap pointers on hash index pages by hash value and ctid
-
Bruce Momjian authored
Serguei A. Mokhov
-
- 09 Jun, 2004 9 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
report from Tom Cook.
-
Tom Lane authored
As a side effect, cause subscripts in INSERT targetlists to do something more or less sensible; previously we evaluated such subscripts and then effectively ignored them. Another side effect is that UPDATE-ing an element or slice of an array value that is NULL now produces a non-null result, namely an array containing just the assigned-to positions.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
This cleanup just cleans up a comment.
-
Bruce Momjian authored
> * Add ON COMMIT capability to CREATE TABLE AS SELECT
-
- 08 Jun, 2004 6 commits
-
-
Tom Lane authored
array.
-
Bruce Momjian authored
-
Bruce Momjian authored
Basically replaces (*a).b with a->b as it is everywhere else in Postgres. Manfred Koizar
-
Bruce Momjian authored
. rename variables . cur_buffer -> dst_buffer . ToPage -> dst_page . cur_page -> dst_vacpage . move variable declarations into block where variable is used . various Asserts instead of elog(ERROR, ...) . extract functionality from repair_frag() into new routines . move_chain_tuple() . move_plain_tuple() . update_hint_bits() . create type ExecContext . add comments Manfred Koizar
-
Bruce Momjian authored
-
Bruce Momjian authored
-
- 07 Jun, 2004 5 commits
-
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Teodor Sigaev authored
-
Bruce Momjian authored
-
Tom Lane authored
-
- 06 Jun, 2004 1 commit
-
-
Tom Lane authored
code if we are running in a single-byte encoding. No point in the extra overhead in that case.
-