aboutsummaryrefslogtreecommitdiff
path: root/verify/articles.sql
blob: 710b462566ff5ca27d0f34e9ce242ba8b6aced12 (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, source, title, body
  FROM articles
 WHERE FALSE;

ROLLBACK;