File: test_data-Kirk-procedure-dynamic.sql

package info (click to toggle)
gnumed-server 16.17-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 42,064 kB
  • sloc: sql: 1,190,603; python: 11,850; sh: 1,082; makefile: 19
file content (104 lines) | stat: -rw-r--r-- 2,614 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
-- =============================================
-- Project GNUmed

-- James T. Kirk test data

-- author: Karsten Hilbert <Karsten.Hilbert@gmx.net>
-- license: GPL v2 or later
--
-- $Source: /home/ncq/Projekte/cvs2git/vcs-mirror/gnumed/gnumed/server/sql/test-data/test_data-Kirk-procedure-dynamic.sql,v $
-- $Revision: 1.2 $
-- =============================================

-- force terminate + exit(3) on errors if non-interactive
\set ON_ERROR_STOP 1

--set default_transaction_read_only to off;

--begin;
-- =============================================
\unset ON_ERROR_STOP

insert into clin.procedure (
	clin_when,
	fk_encounter,
	fk_episode,
	narrative,
	soap_cat,
	clin_where,
	fk_hospital_stay
) values (
	now() - '9 years 5 months 8 days'::interval,
	(select pk from clin.encounter
	 where fk_patient = (
		select pk_identity from dem.v_basic_person
		where firstnames = 'James Tiberius' and lastnames = 'Kirk' and date_trunc('day', dob) = '1931-3-21'
	 )
	 limit 1
	),

	(select pk_episode from clin.v_pat_episodes
	 where
	 pk_patient = (
		select pk_identity from dem.v_basic_person
		where firstnames = 'James Tiberius' and lastnames = 'Kirk' and date_trunc('day', dob) = '1931-3-21'
	 )
	 	and
	 description = 'abdominal lap'
	 	and
	 health_issue like '%peritonitis%'
	 limit 1
	),

	'laparoscopic lavage of abdominal cavity',
	'p',
	null,

	(select pk from clin.hospital_stay
	 where
		fk_encounter = (
			select pk from clin.encounter
			where fk_patient = (
				select pk_identity from dem.v_basic_person
				where firstnames = 'James Tiberius' and lastnames = 'Kirk' and date_trunc('day', dob) = '1931-3-21'
	 		)
			limit 1
		) and
		fk_episode = (
			select pk_episode from clin.v_pat_episodes
			where pk_patient = (
				select pk_identity from dem.v_basic_person
				where firstnames = 'James Tiberius' and lastnames = 'Kirk' and date_trunc('day', dob) = '1931-3-21'
				)	and
				description = 'abdominal lap'
					and
				health_issue like '%peritonitis%'
			limit 1
		)
	)

);

\set ON_ERROR_STOP 1

-- =============================================
-- do simple schema revision tracking
select gm.log_script_insertion('$RCSfile: test_data-Kirk-procedure-dynamic.sql,v $', '$Revision: 1.2 $');

-- comment out the "rollback" if you want to
-- really store the above patient data
--rollback;
--commit;

-- =============================================
-- $Log: test_data-Kirk-procedure-dynamic.sql,v $
-- Revision 1.2  2009-10-23 09:43:38  ncq
-- - make optional
--
-- Revision 1.1  2009/09/17 21:50:29  ncq
-- - add a procedure
--
-- Revision 1.1  2009/09/01 22:11:26  ncq
-- - new
--
--