File: user_insert_duplicate.sql

package info (click to toggle)
goiardi 0.11.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,708 kB
  • sloc: sql: 4,994; makefile: 156; sh: 95; python: 30
file content (10 lines) | stat: -rw-r--r-- 354 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
-- Verify user_insert_duplicate

BEGIN;

SELECT goiardi.merge_users('foom', 'foom', '', false, 'asdfas', '', NULL, 1);
SELECT id, name FROM goiardi.users WHERE name = 'foom' AND admin = FALSE;
SELECT goiardi.merge_users('foom', 'foom', '', true, 'asdfas', '', NULL, 1);
SELECT id, name FROM goiardi.users WHERE name = 'foom' AND admin = TRUE;

ROLLBACK;