`information_schema` tables do not work in detached head state
tbantle22 opened this issue · 0 comments
tbantle22 commented
Repro:
doltgres=> select dolt_tag('v1');
dolt_tag
----------
{0}
(1 row)
doltgres=> select * from dolt_tags;
tag_name | tag_hash | tagger | email | date | message
----------+----------------------------------+---------------------+----------------------+---------------------+---------
v1 | bkkr9pjbs7ggfg7lmu482ill69a6ljkk | Dolt System Account | doltuser@dolthub.com | 2024-10-08 18:40:42 |
(1 row)
doltgres=> use "doltgres/v1";
SET
doltgres=> select * from information_schema.columns;
ERROR: this operation is not supported while in a detached head state (errno 1105) (sqlstate HY000)