Revision 5734
Added by Aaron Marcuse-Kubitza about 12 years ago
schemas/vegbien.my.sql | ||
---|---|---|
138 | 138 |
|
139 | 139 |
|
140 | 140 |
-- |
141 |
-- Name: _is_higher_taxon(taxonrank); Type: FUNCTION; Schema: public; Owner: - |
|
142 |
-- |
|
143 |
|
|
144 |
|
|
145 |
|
|
146 |
|
|
147 |
-- |
|
148 | 141 |
-- Name: _taxonlabel_set_matched_label_id(int(11), int(11), double precision); Type: FUNCTION; Schema: public; Owner: - |
149 | 142 |
-- |
150 | 143 |
|
schemas/vegbien.sql | ||
---|---|---|
312 | 312 |
|
313 | 313 |
|
314 | 314 |
-- |
315 |
-- Name: _is_higher_taxon(taxonrank); Type: FUNCTION; Schema: public; Owner: - |
|
316 |
-- |
|
317 |
|
|
318 |
CREATE FUNCTION _is_higher_taxon(rank taxonrank) RETURNS boolean |
|
319 |
LANGUAGE sql IMMUTABLE STRICT |
|
320 |
AS $_$ |
|
321 |
SELECT $1 < 'family' |
|
322 |
$_$; |
|
323 |
|
|
324 |
|
|
325 |
-- |
|
326 | 315 |
-- Name: _taxonlabel_set_matched_label_id(integer, integer, double precision); Type: FUNCTION; Schema: public; Owner: - |
327 | 316 |
-- |
328 | 317 |
|
Also available in: Unified diff
schemas/vegbien.sql: Removed no longer used _is_higher_taxon(). Use _has_taxonomic_name() or _taxonomic_name_is_epithet() instead.