Github user cramja commented on the issue: https://github.com/apache/incubator-quickstep/pull/189 @zuyu I cannot recreate the issue you are describing. ``` Starting Quickstep with 8 worker thread(s) and a 11.20 GB buffer pool. --num_workers is 8, but only specified 0 CPU affinities with --worker_affinities. 8 workers will be unaffinitized. quickstep> \d quickstep> \dt quickstep> \dt foo ERROR: Unrecognized relation foo (1 : 5) \dt foo ^ quickstep> create table foo (id int); Time: 0.205 ms quickstep> \d List of relations Name | Type | Blocks +-------+-------+---------+ foo | table | 0 quickstep> \dt foo List of relations Name | Type | Blocks +-------+-------+---------+ foo | table | 0 quickstep> \d foo Table "foo" Column | Type +-------+-------+ id | Int quickstep> \d foobar ERROR: Unrecognized relation foobar (1 : 4) \d foobar ^ quickstep> \d List of relations Name | Type | Blocks +-------+-------+---------+ foo | table | 0 quickstep> quit; ```
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---