41 Star 100 Fork 127

openGauss/openGauss-connector-jdbc

 / 详情

【兼容性】jdbc调用存储过程注册出参为char,但数据库返回类型为varchar,出现报错

已验收
缺陷
创建于  
2023-11-14 11:11

【标题描述】:
【兼容性】jdbc调用存储过程注册出参为char,但数据库返回类型为varchar,出现了error报错
输入图片说明
输入图片说明

具体测试用例:

    @Test
    public void testSpOutChar() throws SQLException {
        Statement stmt = null;
        CallableStatement cmt = null;
        try {
            // create sp
            String procedureSql = "create or replace procedure test_sp_out_char(\n" +
                    "\t pa in int4,\n" +
                    "\t pb out varchar,\n" +
                    "\t pc out int8)\n" +
                    "IS \n" +
                    "begin \n" +
                    "pb := 'out1'; \n" +
                    "pc := pa + 10; \n" +
                    "end;";
            stmt = con.createStatement();
            stmt.execute(procedureSql);

            // execute sp
            String commandText = "{call test_sp_out_char(?, ?, ?)}";
            cmt = con.prepareCall(commandText);
            cmt.setInt(1, 1010);
            cmt.registerOutParameter(2, Types.CHAR);
            cmt.registerOutParameter(3, Types.BIGINT);
            cmt.execute();

            // get result set
            Object pa = cmt.getObject(1);
            String pb = cmt.getString(2);
            long pc = cmt.getLong(3);
            assertEquals(null, pa);
            assertEquals("out1", pb);
            assertEquals(1020, pc);
        } finally {
            TestUtil.closeQuietly(stmt);
            TestUtil.closeQuietly(cmt);
        }
    }

评论 (4)

Sam皮皮 创建了缺陷 1年前

Hey @sam-pippi, Welcome to openGauss Community.
All of the projects in openGauss Community are maintained by @opengauss_bot.
That means the developers can comment below every pull request or issue to trigger Bot Commands.
Please follow instructions at Here to find the details.

Hi @sam-pippi,
if you want to get quick review about your issue, please contact the owner in first: @justbk ,
and then any of the maintainers: @pikeTWG
and then any of the committers: @kamusis , @vimiix , @wangweizz , @travelliu , @aaronwell , @willloong
if you have any question, please contact the SIG: Connectors.

opengauss_bot 添加了
 
sig/connectors
标签
1年前
jiexiao1413 负责人设置为周斌 1年前
jiexiao1413 关联项目设置为openGauss 5.1.1 community 1年前
周斌 计划开始日期设置为2023-11-18 1年前
周斌 计划截止日期设置为2023-11-18 1年前
travelliu 任务状态待办的 修改为已确认 1年前
travelliu 任务状态已确认 修改为修复中 1年前
周斌 任务状态已完成 修改为待回归 1年前
周斌 任务状态待回归 修改为测试中 1年前
Sam皮皮 修改了描述 1年前

@sam-pippi 麻烦上传java脚本至附件,包括其他两个问题单,谢谢

wan005 添加协作者ningyali 1年前

验收版本:compiled at 2024-02-29-10:03:35 build fb8238f
验收结论:验收通过
输入图片说明
输入图片说明
输入图片说明

ningyali 任务状态测试中 修改为已验收 1年前

登录 后才可以发表评论

状态
负责人
项目
Pull Requests
关联的 Pull Requests 被合并后可能会关闭此 issue
预计工期 (小时)
开始日期   -   截止日期
-
置顶选项
优先级
是否回合
回合版本
回合自检情况
未设置
确定
提单组织
客户名称
里程碑
分支
组织
组织
确定
故障现象
问题故障现象
确定
用例发现
备注
未设置
确定
开发领域
开发改进-改进措施
开发改进-改进措施
确定
开发改进-输出件归档
开发改进-输出件归档
确定
故障概率
开发是否复现
测试领域
测试责任人
测试责任人
子特性
问题归属自特性
确定
问题详情
问题原因详情
确定
需求引入问题
是填需求ISSUE ID;其他填否
确定
转测后遗漏问题
是否分析
关键日志
问题定位关键日志
确定
问题引入阶段
问题出现阶段
问题引入版本
测试是否复现
问题发生分类
测试改进-改进措施
测试改进措施
确定
测试改进-输出件归档
测试改进输出件归档
确定
参与者(4)
13084139 opengauss bot 1686829535 邹佳良-zou_jialiang050 8772917 ningyali 1691032793 Sam皮皮-sam-pippi
Java
1
https://gitee.com/opengauss/openGauss-connector-jdbc.git
git@gitee.com:opengauss/openGauss-connector-jdbc.git
opengauss
openGauss-connector-jdbc
openGauss-connector-jdbc

搜索帮助