- 30 Jun, 2000 2 commits
-
-
Tom Lane authored
-
Tom Lane authored
entry that has rules. This allows us to release the rule parsetrees on relcache flush without needing a working freeObject() routine. Formerly, the rule trees were leaked permanently at relcache flush. Also, clean up handling of rule creation and deletion --- there was not sufficient locking of the relation being modified, and there was no reliable notification of other backends that a relcache reload was needed. Also, clean up relcache.c code so that scans of system tables needed to load a relcache entry are done in the caller's memory context, not in CacheMemoryContext. This prevents any un-pfreed memory from those scans from becoming a permanent memory leak.
-
- 29 Jun, 2000 6 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
in copyfuncs and equalfuncs exposed by regression tests. We still have some work to do: these modules really ought to handle most or all of the utility statement node types. But it's better than it was.
-
Tom Lane authored
documentation. Let's try to keep this file a bit neater in future, hmm? Also (to get back to the original point) update info about FUNC_MAX_ARGS, and add additional config symbols for debugging new memory management changes.
-
Tom Lane authored
worth the effort to continue to maintain. Since freeObject() is not capable of coping with cases like multiple links to a node, it's unlikely that it ever will be useful again. We now have memory context management that offers a faster and more reliable way of getting rid of arbitrary node trees (at the cost of having to know in advance of building the tree that you'll want to get rid of it).
-
Tom Lane authored
that list to cope with platforms that don't have them all.
-
Bruce Momjian authored
does not have it.
-
- 28 Jun, 2000 5 commits
-
-
Peter Eisentraut authored
standard targets and behaviour. Replaced Makefile.in's with Makefile's and declared the respective variables in Makefile.global. maintainer-clean target now available at top level, although it does not work in the backend tree yet. Cleanup pass over Makefile.shlib, renamed some targets and variables. The shared library symlink tests are now done by make, not the shell. ecpg: Remove one warning in sloppy flex output. PL/Perl and Perl interface: the MakeMaker documentation is confusing, the realclean target *does* "delete derived files", but it also uninstalls them. Don't use that. The submake targets in the various bin directories that update libpq should `make all', not `make libpq.a'. That is a) unportable, and b) doesn't build the shared library.
-
Tom Lane authored
-
Tom Lane authored
how to install multiple files in one invocation.
-
Tom Lane authored
scripts are executable after being installed. Latest changes got the permissions wrong (non executable).
-
Tom Lane authored
for details). It doesn't really do that much yet, since there are no short-term memory contexts in the executor, but the infrastructure is in place and long-term contexts are handled reasonably. A few long- standing bugs have been fixed, such as 'VACUUM; anything' in a single query string crashing. Also, out-of-memory is now considered a recoverable ERROR, not FATAL. Eliminate a large amount of crufty, now-dead code in and around memory management. Fix problem with holding off SIGTRAP, SIGSEGV, etc in postmaster and backend startup.
-
- 27 Jun, 2000 2 commits
-
-
Bruce Momjian authored
Japan. Can someone comment on this? According to him, with the patch now only the geometry test fails. Tatsuo Ishii
-
Peter Eisentraut authored
all the standard semantics. Also get rid of Makefile.in's on the way and instead declare all variables in Makefile.global.
-
- 26 Jun, 2000 1 commit
-
-
Bruce Momjian authored
-
- 25 Jun, 2000 2 commits
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
- 24 Jun, 2000 1 commit
-
-
Bruce Momjian authored
-
- 22 Jun, 2000 1 commit
-
-
Peter Eisentraut authored
option settings. Sort out SIGHUP vs BACKEND -- there is no total ordering here, so make explicit checks. Add comments explaining all of this. Removed permissions check on SHOW command. Add examine_subclass to the game, rename to SQL_inheritance to fit the official data model better. Adjust documentation. Standalone backend needs to reset all options before it starts. To facilitate that, have IsUnderPostmaster be set by the postmaster itself, don't wait for the magic -p switch. Also make sure that all environment variables and argv's survive init_ps_display(). Use strdup where necessary. Have initdb make configuration files (postgresql.conf, pg_hba.conf) mode 0600 -- having configuration files is no fun if you can't edit them.
-
- 21 Jun, 2000 1 commit
-
-
Peter Eisentraut authored
-
- 20 Jun, 2000 5 commits
-
-
Bruce Momjian authored
> patches are not lost... Aggregate doc patches: The patches are attached. Be great if you could check them over to make sure all relevant content (and markup) is there... Isaac Wilcox
-
Peter Eisentraut authored
interfaces and interfaces/odbc make files. Adjusted regression test driver to start building and installing in the top level directory.
-
Tom Lane authored
the underlying table at all, just change the mapping entry ... but that logic was missing.
-
Tom Lane authored
hopefully even a little faster.
-
Tom Lane authored
to apply the tempname->realname mapping to type name lookup as well as relation name lookup, else the type tuple will not be found when wanted. This fixes bugs like this one: create temp table foo (f1 int); select foo.f2 from foo; ERROR: Unable to locate type name 'foo' in catalog
-
- 19 Jun, 2000 11 commits
-
-
Tom Lane authored
are opened in a consistent order by different backends (I ordered them by index OID because that's easy, but any other consistent order would do as well). This avoids potential deadlock for index types that we acquire exclusive locks on ... ie, rtree.
-
Tom Lane authored
Tweak mdcreate a little bit so that it returns the right errno.
-
Peter Eisentraut authored
which didn't work anyway. Had to back out unixodbc related patch which broke the regular ODBC build.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
and readability.
-
Bruce Momjian authored
-
Tom Lane authored
entries now for int8 and network hash indexes. int24_ops and int42_ops are gone. pg_opclass no longer contains multiple entries claiming to be the default opclass for the same datatype. opr_sanity regress test extended to catch errors like these in the future.
-
Bruce Momjian authored
-
- 18 Jun, 2000 3 commits
-
-
Tom Lane authored
materialized tupleset is small enough) instead of a temporary relation. This was something I was thinking of doing anyway for performance, and Jan says he needs it for TOAST because he doesn't want to cope with toasting noname relations. With this change, the 'noname table' support in heap.c is dead code, and I have accordingly removed it. Also clean up 'noname' plan handling in planner --- nonames are either sort or materialize plans, and it seems less confusing to handle them separately under those names.
-
Peter Eisentraut authored
reference page to new configuration system. Big update to administrator's guide, chapters Runtime environment, Client authentication, and User management, the latter two were part of the old Security chapter.
-
Tom Lane authored
-