Re: pgsql: tableam: introduce table AM infrastructure.

2019-05-27 Thread Andres Freund
Hi, For the archive's sake: On 2019-03-06 18:01:15 +, Andres Freund wrote: > tableam: introduce table AM infrastructure. > Author: Haribabu Kommi, Andres Freund, Alvaro Herrera, Dimitri Golgov and > others Please note that I completely butchered a name here. It's not Dimitri Golgov, it's D

Re: pgsql: tableam: introduce table AM infrastructure.

2019-03-11 Thread Andres Freund
On 2019-03-11 08:21:21 +0530, Amit Kapila wrote: > I noticed a few typos in this commit. The patch for the same is > attached. Merged, thanks!

Re: pgsql: tableam: introduce table AM infrastructure.

2019-03-10 Thread Amit Kapila
On Wed, Mar 6, 2019 at 11:31 PM Andres Freund wrote: > > tableam: introduce table AM infrastructure. > Thanks for this work. I noticed a few typos in this commit. The patch for the same is attached. -- With Regards, Amit Kapila. EnterpriseDB: http://www.enterprisedb.com 0001-Fix-typos-in-co

pgsql: tableam: introduce table AM infrastructure.

2019-03-06 Thread Andres Freund
tableam: introduce table AM infrastructure. This introduces the concept of table access methods, i.e. CREATE ACCESS METHOD ... TYPE TABLE and CREATE TABLE ... USING (storage-engine). No table access functionality is delegated to table AMs as of this commit, that'll be done in following commits