TablePlus
TablePlus copied to clipboard
Feature request: Show TEMP TABLES in the items list
-
Which driver are you using and version of it (Ex: PostgreSQL 10.0): PostresSQL 11.5
-
Which TablePlus build number are you using (the number on the welcome screen, Ex: build 81): 288
-
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):