aboutsummaryrefslogtreecommitdiff
path: root/verify/articles.sql
blob: 4b9854731aee4c88ecca7516856df422b771fc1a (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
-- Verify diary:articles on pg

BEGIN;

SET search_path to diary;

SELECT article_id, timestamp, hash, title, body
  FROM articles
 WHERE FALSE;

ROLLBACK;