Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fast Temporary tables for GP. #7

Open
wants to merge 10 commits into
base: OPENGPDB_STABLE
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/src/sgml/catalogs.sgml
Original file line number Diff line number Diff line change
Expand Up @@ -1875,7 +1875,7 @@ SCRAM-SHA-256$<replaceable>&lt;iteration count&gt;</>:<replaceable>&lt;salt&gt;<
<entry></entry>
<entry>
<literal>p</> = permanent table, <literal>u</> = unlogged table,
<literal>t</> = temporary table
<literal>t</> = temporary table, <literal>f</> = fast temporary table
</entry>
</row>

Expand Down
2 changes: 1 addition & 1 deletion src/backend/access/appendonly/appendonlyam.c
Original file line number Diff line number Diff line change
Expand Up @@ -2972,7 +2972,7 @@ appendonly_insert(AppendOnlyInsertDesc aoInsertDesc,
* object store (objects need to contain pointers to one another).
*/
if (!OidIsValid(tupleOid))
tupleOid = GetNewOid(relation);
tupleOid = GetNewOid(relation, '\0');

MemTupleSetOid(tup, aoInsertDesc->mt_bind, tupleOid);
}
Expand Down
2 changes: 1 addition & 1 deletion src/backend/access/common/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ subdir = src/backend/access/common
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global

OBJS = heaptuple.o indextuple.o printtup.o reloptions.o scankey.o \
OBJS = fasttab.o heaptuple.o indextuple.o printtup.o reloptions.o scankey.o \
tupconvert.o tupdesc.o

OBJS += bufmask.o memtuple.o reloptions_gp.o
Expand Down
Loading
Loading