BUG #15072: Unable to get tablespace from pg_tables for new createdtable - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #15072: Unable to get tablespace from pg_tables for new createdtable
Date
Msg-id 151894754375.1388.3312596352253421332@wrigleys.postgresql.org
Whole thread Raw
Responses Re: BUG #15072: Unable to get tablespace from pg_tables for new created table
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      15072
Logged by:          rheman pessek
Email address:      rhemandaddy@googlemail.com
PostgreSQL version: 10.2
Operating system:   ubuntu server 16.04.3
Description:

Hi everyone.
I have created tablespace.

sudo mkdir /tbs_data
sudo chown -R postgres:postgres  /tbs_data
su - postgres
create tablespace tbs_data location ‘/tbs_data’;

Then I have create database and tables on that tablespace.

create database gescom_bis tablespace tbs_data;
\c gescom_bis;
SET default_tablespace = 'tbs_data';
create table voiture_bis (num int) tablespace tbs_data;


But when I run this the following query I have ans empty (blank result)

select tablespace from pg_tables where tablename='voiture_bis';

hence the tablespace name is not displayed.

But went I run the following query, everythins seams to work.

select oid from pg_database where datname = 'gescom_bis';
select relfilenode from pg_class where relname = 'voiture_bis';


Best ragrd.



pgsql-bugs by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: BUG #15044: materialized views incompatibility with logicalreplication in postgres 10
Next
From: Sergei Kornilov
Date:
Subject: Re: BUG #15072: Unable to get tablespace from pg_tables for new created table