TablePlus icon indicating copy to clipboard operation
TablePlus copied to clipboard

Feature request: Show TEMP TABLES in the items list

Open BFJonk opened this issue 5 years ago • 6 comments

  1. Which driver are you using and version of it (Ex: PostgreSQL 10.0): PostresSQL 11.5

  2. Which TablePlus build number are you using (the number on the welcome screen, Ex: build 81): 288

  3. The steps to reproduce this issue:

Can you show TEMP tables I created in the session in the items list to the left?

Thus after executing:

CREATE TEMP TABLE table_name AS (
	SELECT
		A.column_a, A.column_b, B.*
	FROM
		A
		JOIN B ON A.id = B.id
	WHERE 
		B.revenue_type = 'X'
);

can the table then show up here (possibly with different colour): afbeelding

BFJonk avatar Jan 08 '20 07:01 BFJonk