- Jul 04, 2000
-
-
Jan Wieck authored
Jan
-
Peter Eisentraut authored
files to restrict the set of users that can connect to a database but can still use the pg_shadow password. (You just leave off the password field in the secondary file.)
-
Tom Lane authored
Don't go through pg_exec_query_dest(), but directly to the execution routines. Also, extend parameter lists so that there's no need to change the global setting of allowSystemTableMods, a hack that was certain to cause trouble in the event of any error.
-
Tom Lane authored
in the infomask of the provided tuple.
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
+unlock buffer in heap_fetch under !ItemIdIsUsed().
-
Tom Lane authored
-
Jan Wieck authored
WARNING: This is actually broken - we have self-deadlocks due to concurrent changes in buffer management. Vadim and me are working on it. Jan
-
- Jul 03, 2000
-
-
Peter Eisentraut authored
-
Peter Eisentraut authored
parsing to not clobber the optarg string -- so that we can bring SetOptsFile() up to speed.
-
Bruce Momjian authored
for to_char() too. Karel
-
Hiroshi Inoue authored
This enables unique constraint check in case of SELECT FOR UPDATEd.
-
Tom Lane authored
-
Tom Lane authored
notice this warning?)
-
Vadim B. Mikheev authored
-
Bruce Momjian authored
regression tests). Chris Bitmead
-
- Jul 02, 2000
-
-
Peter Eisentraut authored
and config.h. Adjusted all referring code. Scrapped pg_version and changed initdb accordingly. Integrated src/utils/version.c into src/backend/utils/init/miscinit.c. Changed all callers. Set version number to `7.1devel'. (Non-numeric version suffixes now allowed.)
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
-
Tom Lane authored
there is no open transaction.
-
- Jul 01, 2000
-
-
Bruce Momjian authored
-
Peter Eisentraut authored
just pass in CPP and AWK via the environment from the Makefile.
-
Bruce Momjian authored
Now the to_timestamp() support WW,W,J,SSSS,DDD conversion from strings and the am/pm bug is fixed, the to_char() use week-of-year (WW) full compatible with Oracle. This patch update relevant regress-tests and docs too. Karel ~ ~
-
- Jun 30, 2000
-
-
Peter Eisentraut authored
Don't use DISABLE_COMPLEX_MACRO on Solaris. Don't define the replacement function in the header file. Use -KPIC, not -K PIC. Use CC to link C++ libraries, not ld/ar. Eliminate file not found warnings in tcl build code.
-
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.
-
- Jun 29, 2000
-
-
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
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.
-
- Jun 28, 2000
-
-
Tom Lane authored
-
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.
-
- Jun 27, 2000
-
-
Bruce Momjian authored
Japan. Can someone comment on this? According to him, with the patch now only the geometry test fails. Tatsuo Ishii
-
- Jun 25, 2000
-
-
Peter Eisentraut authored
-
- Jun 23, 2000
-
-
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.
-
- Jun 20, 2000
-
-
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
-
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.
-