sql/tests.sql
author Radek Brich <radek.brich@devl.cz>
Tue, 24 Sep 2013 13:34:17 +0200
changeset 88 b8b2d28a7f35
parent 75 39f777341db4
permissions -rw-r--r--
Update analyzeall tool: Allow combination of vacuum and reindex.

CREATE TABLE test
(
  id serial NOT NULL,
  name varchar,
  PRIMARY KEY (id)
);

GRANT ALL ON TABLE test TO test;