I wonder if it would be possible here to add `enable_url_table` as a argument to SessionStateBuilder
So it could look like
let session_state = SessionStateBuilder::new()
.with_default_features()
.with_config(cfg)
.enable_url_table()
.build();
let ctx = SessionContext::from(session_state);
🤔
(we can do this as a follow on as well)
Originally posted by @alamb in #11035 (comment)