sql/tests.sql
author Radek Brich <radek.brich@devl.cz>
Mon, 26 May 2014 18:18:21 +0200
changeset 103 24e94a3da209
parent 75 39f777341db4
permissions -rw-r--r--
Update bigtables tool: Sort by size with indexes, not just data.

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

GRANT ALL ON TABLE test TO test;