Y-sir opened a new issue, #29387: URL: https://github.com/apache/shardingsphere/issues/29387
## Bug Report **For English only**, other languages will not accept. Before report a bug, make sure you have: - Searched open and closed [GitHub issues](https://github.com/apache/shardingsphere/issues). - Read documentation: [ShardingSphere Doc](https://shardingsphere.apache.org/document/current/en/overview). Please pay attention on issues you submitted, because we maybe need more details. If no response anymore and we cannot reproduce it on current information, we will **close it**. Please answer these questions before submitting your issue. Thanks! ### Which version of ShardingSphere did you use? 5.4.1 ### Which project did you use? ShardingSphere-JDBC or ShardingSphere-Proxy? ShardingSphere-Proxy and postgresql 14.2 ### Expected behavior 查看表结构 每个字段的类型  ### Actual behavior 查看不到表的类型信息,全部为 type  ### Reason analyze (If you can) ### Steps to reproduce the behavior, such as: SQL to execute, sharding rule configuration, when exception occur etc. CREATE TABLE "public"."t10" ( "id" int4 NOT NULL, "price" numeric(10,0), "p2" time(6), "p1" date, "t5" char(255) COLLATE "pg_catalog"."default" DEFAULT '北京市'::bpchar, "bpchar" char COLLATE "pg_catalog"."default" DEFAULT '北京市'::bpchar, "money" float4 DEFAULT 1.12, "zongjia" float8, "int8_cs" int8, "int2_cs" int2, "content" varchar(20000) COLLATE "pg_catalog"."default", "bigt6" int8, "inter7" int4 ) ; ALTER TABLE "public"."t10" OWNER TO "postgres"; COMMENT ON COLUMN "public"."t10"."id" IS 'int4_主键'; COMMENT ON COLUMN "public"."t10"."price" IS '价格'; COMMENT ON COLUMN "public"."t10"."p2" IS '时间'; COMMENT ON COLUMN "public"."t10"."p1" IS '日期'; COMMENT ON COLUMN "public"."t10"."t5" IS '地区'; COMMENT ON COLUMN "public"."t10"."bpchar" IS 'bpchar地区'; COMMENT ON COLUMN "public"."t10"."money" IS '金钱'; COMMENT ON COLUMN "public"."t10"."zongjia" IS '总价'; COMMENT ON COLUMN "public"."t10"."int8_cs" IS 'int8_cs字段'; COMMENT ON COLUMN "public"."t10"."int2_cs" IS 'int2_cs字段'; COMMENT ON COLUMN "public"."t10"."content" IS 'varchar字段'; ### Example codes for reproduce this issue (such as a github link). -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
