easy resetting - Search results in mailing lists
Mailing lists >> pgsql-patches >> Thread
2008-09-29 12:05:36 | Re: [HACKERS] Infrastructure changes for recovery (Simon Riggs)
easier to understand and agree. Proof of safety is all we need, and this simpler proof is more secure.) Don't want to make it per file though. Big systems can whizz through WAL files
Mailing lists >> pgsql-patches >> Thread
2008-09-06 19:21:40 | Re: [HACKERS] TODO item: Implement Boyer-Moore searching (First time hacker) (Tom Lane)
setting code. I think it's worth introducing a second test of use_wchar in order to arrange text_position_setup like this: ... existing code ... choose skiptablesize initialize skip table (this loop doesn't depend
Mailing lists >> pgsql-patches >> Thread >> Search in thread (3)
2008-05-14 15:09:33 | Re: libpq object hooks (Andrew Chernow)
setting the + * PG_COPYRES_NO_TUPLES option. One must use PQsetvalue to manually + * add tuples to the returned result. NOTE: numAttributes and attDescs + * arguments are ignored unless this option is set! + * + * PG_COPYRES_NO_OBJECTHOOKS
Mailing lists >> pgsql-patches >> Thread
2008-04-06 17:50:02 | Database owner installable modules patch (Tom Dunstan)
setting. - Should plperl etc be done as modules so that their config can live independently as well? And to allow modules to "require" them? Some other nice to haves for some point in the future
Mailing lists >> pgsql-patches >> Thread
2008-04-01 13:09:40 | Re: psql command aliases support (Bernd Helmle)
easy way to get information about current locales, encoding and user settings). You simply can't catch
Mailing lists >> pgsql-patches >> Thread
2008-03-29 05:48:20 | Re: Auto-explain patch (Dean Rasheed)
easier to use (and implement) as a settable parameter, mirroring Oracle's AUTOTRACE. For (2) I agree
Mailing lists >> pgsql-patches >> Thread
2008-03-18 16:21:15 | Moving snapshot code around (Alvaro Herrera)
easy step is to separate the relevant code from tqual.c into a new file, snapshot.c, and split tqual.h in two creating snapshot.h. Basically the internals of snapshots are now in tqual.c/h, and the external interface
Mailing lists >> pgsql-patches >> Thread
2008-01-25 19:00:47 | Re: [HACKERS] Thoughts about bug #3883 (Tom Lane)
easy to check that. This lets us remove LockWaitCancel's return value (which was always a bit untidy, since all but one of its callers ignored the result), ending up with exactly parallel code
Mailing lists >> pgsql-patches >> Thread
2007-10-19 09:38:42 | txid cleanup (Marko Kreen)
easy - use SERIALIZABLE transaction isolation level. Also - either Tom or Jan has changed the code to allow xmin == xmax. Is such case really valid? In _recv code I followed the style, but I was just
Mailing lists >> pgsql-patches >> Thread
2007-09-25 11:41:47 | Re: [HACKERS] 'Waiting on lock' (Simon Riggs)
setting a lock timeout. If execution time is not negligible, then you may want to tell the difference between waiting for completion against waiting forever without doing anything useful at all. It's also easier
Mailing lists >> pgsql-patches >> Thread
2007-08-10 23:21:50 | final CSVlog patch (Andrew Dunstan)
easy way to import the log files into a database table. + Here is a sample table that csvlog output could be + copied into: + + + + CREATE TABLE pglog + ( + log_time timestamp, + username text, + database_name text, + sessionid
Mailing lists >> pgsql-patches >> Thread
2007-07-25 06:24:08 | Re: Async Commit, v21 (now: v22) (Simon Riggs)
easy way of working out what to do. That seems like a problem to me, if we let it occur; the patch avoids that trivially. In RecordTransactionCommit we do smgrGetPendingDeletes(), so we know if there
Mailing lists >> pgsql-patches >> Thread >> Search in thread (3)
2007-06-22 17:57:07 | Re: Load Distributed Checkpoints, take 3 (Greg Smith)
settings for good performance, and making it that much bigger aggrevates the issue. Given a knob where the LDC can be spread out a bit but not across the entire interval, that makes it easier
Mailing lists >> pgsql-patches >> Thread
2007-06-22 08:35:17 | Re: Transaction Guarantee, updated version (Simon Riggs)
setting the hint bits at all, if the written transactions are recently written. To do this we need a cache of recently written deferred commit Xids. 3. flush
Mailing lists >> pgsql-patches >> Thread
2007-06-09 17:55:19 | Re: Regression tests (Magnus Hagander)
easier to read, and changed a couple of smaller things. I have not yet looked at the actual ecpg parts (except noticed that they are working on msvc at least), just the changes to main