Revision 7227
Added by Aaron Marcuse-Kubitza about 12 years ago
schema.sql | ||
---|---|---|
1 |
CREATE OR REPLACE FUNCTION array_to_string(anyarray, text) |
|
2 |
RETURNS text AS |
|
3 |
$BODY$ |
|
4 |
SELECT pg_catalog.array_to_string($1, $2) |
|
5 |
$BODY$ |
|
6 |
LANGUAGE sql IMMUTABLE STRICT |
|
7 |
COST 100; |
|
8 |
|
|
9 | 1 |
CREATE TABLE tnrs |
10 | 2 |
( |
11 | 3 |
"Time_submitted" timestamp with time zone, |
Also available in: Unified diff
inputs/.TNRS/schema.sql: Removed no longer used array_to_string(). The IMMUTABLE wrapper is only needed for index conditions and other places that require an IMMUTABLE function.