测试 PostgreSQL 函数

Testing PostgreSQL function

我正在将现有的 Sybase 系统迁移到 PostgreSQL,但在测试我的功能时遇到了问题。例如我有以下代码

drop function if exists contract_line_ins(bigint, bigint, char(10), date, date, numeric(18, 0), numeric(18, 0), integer, bigint); 

create function contract_line_ins (
  in    _contract_id       bigint,
  in    _product_id        bigint,
  in    _number            char(10),
  in    _start_date        date,
  in    _end_date          date,
  in    _history_access    numeric(18, 0),
  in    _subscription_type numeric(18, 0),
  inout _rows_updated      integer,
  inout _id                bigint
)
as $$
declare
  _locus int = 1;    -- Set this in code to indicate current executing statement in exception
  _at text;          -- Used in exception handling

begin
  insert into contract_line(contract_id, product_id, number, start_date, end_date, history_access, subscription_type)
  values (_contract_id, _product_id, _number, _start_date, _end_date, _history_access, _subscription_type)
  returning _id;

  get diagnostics _rows_updated = row_count;

-- Exception handling
  exception when others then
    get stacked diagnostics _at = PG_EXCEPTION_CONTEXT;
    raise notice E'EXCEPTION\nError:   %\nMessage: %\nLocus:   %\nAt:      %', SQLSTATE, SQLERRM, _locus, _at;
end;
$$ language plpgsql;

我很欣赏在这种情况下同时拥有两个 return 值是多余的,但我被要求除非绝对必要,否则不要更改参数。

我写了下面的测试代码

do language plpgsql $$
declare
  contract_id       bigint = 1;
  product_id        bigint = 2;
  number            char(10) = 'CONTRACT';
  start_date        date = '20160101';
  end_date          date = '20161231';
  history_access    numeric(18, 0) = 3;
  subscription_type numeric(18, 0) = 4;
  rows_updated      int;
  id                bigint;
begin
  perform contract_line_ins(contract_id, product_id, number, start_date, end_date, history_access, subscription_type, rows_updated, id);

  raise notice E'row count % id %', rows_updated, id;
end
$$

当我执行这个测试时,我得到以下信息:

[2016-06-18 05:55:17] EXCEPTION
Error:   42601
Message: query has no destination for result data
Locus:   1
At:      PL/pgSQL function contract_line_ins(bigint,bigint,character,date,date,numeric,numeric,integer,bigint) line 7 at SQL statement
SQL statement "SELECT contract_line_ins(contract_id, product_id, number, start_date, end_date, history_access, subscription_type, rows_updated, id)"
PL/pgSQL function inline_code_block line 13 at PERFORM
[2016-06-18 05:55:17] row count <NULL> id <NULL>
[2016-06-18 05:55:17] completed in 43ms

我不明白的是:

  1. 为什么 "query has no destination for result data" 消息?我 认为 PERFORM 是为了防止
  2. 异常发生在我的测试代码中,但在函数中引发。我原以为该函数只会报告发生在其自身主体中的异常。为什么会这样?

虽然我发现 PostgreSQL 文档非常好,但我只是不知道如何正确地执行此操作。

非常感谢收到任何建议。

Q1

我认为这个 returning _id 位给出了一个例外。因为 INSERT ... RETURNING 应该以列列表结束,而不是变量名。如果你想插入行列 id 值到 _id 变量 - 将它更改为 returning id INTO _id.

Q2

我相信函数中发生了错误