443e6135创建于 2022年12月23日历史提交
create schema test_connection_id;
set current_schema to 'test_connection_id';

-- 测试返回连接的ID
SELECT CONNECTION_ID();

drop schema test_connection_id cascade;
reset current_schema;