node-postgres:参数化插入查询缓存,第二次运行失败

时间:2015-07-18 10:31:48

标签: node.js postgresql node-postgres

我正在尝试使用node-postgres运行两个参数化插入查询:第一个指定主键列,第二个不指定。

第二个查询,即使未指定主键列,也无法说明存在重复的主键。

我的pg表:

CREATE TABLE teams (
  id serial PRIMARY KEY,
  created_by int REFERENCES users,
  name text,
  logo text
);

重现此问题的代码:

var pg = require('pg');

var insertWithId = 'INSERT INTO teams(id, name, created_by) VALUES($1, $2, $3) RETURNING id';
var insertWithoutId = 'INSERT INTO teams(name, created_by) VALUES($1, $2) RETURNING id';

pg.connect(process.env.POSTGRES_URI, function (err, client, releaseClient) {
  client.query(insertWithId, [1, 'First Team', 1], function (err, result) {
    releaseClient();

    if (err) {
      throw err;
    }

    console.log('first team created');
  });
});

pg.connect(process.env.POSTGRES_URI, function (err, client, releaseClient) {
  client.query(insertWithoutId, ['Second Team', 1], function (err, result) {
    releaseClient();

    if (err) {
      console.log(err);
    }
  });
});

运行此输出:

first team created

{ [error: duplicate key value violates unique constraint "teams_pkey"]
  name: 'error',
  length: 173,
  severity: 'ERROR',
  code: '23505',
  detail: 'Key (id)=(1) already exists.',
  hint: undefined,
  position: undefined,
  internalPosition: undefined,
  internalQuery: undefined,
  where: undefined,
  schema: 'public',
  table: 'teams',
  column: undefined,
  dataType: undefined,
  constraint: 'teams_pkey',
  file: 'nbtinsert.c',
  line: '406',
  routine: '_bt_check_unique' }

我从阅读node-postgres来源收集的内容,参数化查询被视为准备好的查询,如果它们重用name参数,则会被缓存;虽然从挖掘它的来源,它似乎并不认为我的查询有一个名称属性。

有没有人对如何避免这种情况有任何想法?

1 个答案:

答案 0 :(得分:1)

第一个插入提供id的值,因此序列不会递增。第一次插入后序列仍为1。第二个插入id提供值,因此使用了serial(= 1)。哪个是重复的。最佳解决方案是使用第二个语句,如果需要,让应用程序使用返回的id。

简而言之:不要干扰连续剧。

如果需要更正序列的下一个值,可以使用类似下面的语句。

SELECT setval('teams_id_seq', (SELECT MAX(id) FROM teams) )
        ;