0

Is parallel query execution in Postgresql supported for SELECT INTO queries?

1
  • What do you mean by parallel? what's the case? what do you want to achieve? your question is too open, you need to be more specific. Commented Nov 1, 2017 at 15:10

1 Answer 1

3

No. Parallel execution is not available for DDL statements - only for read only queries.

The deprecated SELECT .. INTO ... creates a new table and thus it qualifies as DDL.

It is also recommended to use CREATE TABLE .. AS SELECT ... instead.

Update: Postgres 11 (to be released end of 2018) will support parallel query execution for CREATE TABLE ... AS SELECT ...

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.