]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/t/lp1545115-circ-and-hold-matrix-get-notes.pg
Lp 1730726: Fix lp1501781-unaccent_and_squash.pg for PostgreSQL 9.6
[working/Evergreen.git] / Open-ILS / src / sql / Pg / t / lp1545115-circ-and-hold-matrix-get-notes.pg
1 -- Load the TAP functions.
2 BEGIN;
3
4 -- Plan the tests.
5 SELECT plan(2);
6
7 -- Run the tests.
8
9 SELECT has_column('config', 'circ_matrix_matchpoint', 'description', 
10     'Column "description" on config.circ_matrix_matchpoint should exist');
11 SELECT has_column('config', 'hold_matrix_matchpoint', 'description',
12     'Column "description" on config.hold_matrix_matchpoint should exist');
13
14 -- Finish the tests and clean up.
15 SELECT * FROM finish();
16 ROLLBACK;
17