glaredb
glaredb copied to clipboard
catalog is out of sync across multiple sessions
Description
open 2 sessions at the same time
# terminal 1
glaredb local -l .db
# terminal 2
glaredb local -l .db
# terminal 1
> create table t1 (a int, b int);
Table created
# terminal 2
> select * from t1;
Error: Error during planning: Unable to fetch table provider for 't1': failed to resolve: failed to find table: t1
note: it works it i set force_refresh to true
SET force_catalog_refresh TO true;, but I'd expect this to work by default.