Revision 5840
Added by Aaron Marcuse-Kubitza over 12 years ago
functions.sql | ||
---|---|---|
179 | 179 |
|
180 | 180 |
|
181 | 181 |
-- |
182 |
-- Name: _m_to_cm(double precision); Type: FUNCTION; Schema: functions; Owner: - |
|
183 |
-- |
|
184 |
|
|
185 |
CREATE FUNCTION _m_to_cm(value double precision) RETURNS double precision |
|
186 |
LANGUAGE sql IMMUTABLE STRICT |
|
187 |
AS $_$ |
|
188 |
SELECT $1*100. |
|
189 |
$_$; |
|
190 |
|
|
191 |
|
|
192 |
-- |
|
182 | 193 |
-- Name: _max(anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement, anyelement); Type: FUNCTION; Schema: functions; Owner: - |
183 | 194 |
-- |
184 | 195 |
|
Also available in: Unified diff
schemas/functions.sql, vegbien.sql: Added _m_to_cm()