1

postgresql-8.4データベースに次のテーブルとシーケンスがあります。

CREATE TABLE complexobjectpy
(
  id integer NOT NULL,
  the_geom geometry,
  semcat integer,
  CONSTRAINT complexobjectpy_pkey PRIMARY KEY (id),
  CONSTRAINT enforce_dims_the_geom CHECK (st_ndims(the_geom) = 2),
  CONSTRAINT enforce_srid_the_geom CHECK (st_srid(the_geom) = 900913)
)
WITH (
  OIDS=FALSE
);
ALTER TABLE complexobjectpy OWNER TO tss;

CREATE SEQUENCE seq_complexobjectpy
  INCREMENT 1
  MINVALUE 1
  MAXVALUE 9223372036854775807
  START 1
  CACHE 1;
ALTER TABLE seq_complexobjectpy OWNER TO tss;

代わりに、私のDjangoモデルは次のとおりです。

class Complexobjectpy(models.Model):
    the_geom = models.GeometryField(srid=900913)
    semcat = models.IntegerField()
    objects = models.GeoManager()
    class Meta:
        db_table = u'complexobjectpy'

次のクエリを実行します。

myObj = Complexobjectpy(semcat=50, the_geom=geometryMerged.wkt)
myObj.save(using='u1')

エラーが発生します:

IntegrityError: null value in column "id" violates not-null constraint

なぜ私はこれを手に入れますか?ドキュメントを読んで、id値がシーケンスを使用して自動的に選択されることを期待していました...

4

1 に答える 1

5

実はこれを答えとして提供しています。postgresのデータ型シリアルは自動増分4バイト整数です。IDを整数からシリアルに変更すると、これは機能します。

 id serial NOT NULL

続きを読む:http ://www.postgresql.org/docs/8.4/static/datatype.html

于 2012-04-04T10:05:07.613 に答える