Revision 12248
Added by Aaron Marcuse-Kubitza almost 11 years ago
vegbien.sql | ||
---|---|---|
1918 | 1918 |
|
1919 | 1919 |
|
1920 | 1920 |
-- |
1921 |
-- Name: concat(text); Type: AGGREGATE; Schema: public; Owner: - |
|
1922 |
-- |
|
1923 |
|
|
1924 |
CREATE AGGREGATE concat(text) ( |
|
1925 |
SFUNC = textcat, |
|
1926 |
STYPE = text, |
|
1927 |
INITCOND = '' |
|
1928 |
); |
|
1929 |
|
|
1930 |
|
|
1931 |
-- |
|
1932 | 1921 |
-- Name: analytical_stem; Type: TABLE; Schema: public; Owner: -; Tablespace: |
1933 | 1922 |
-- |
1934 | 1923 |
|
Also available in: Unified diff
schemas/vegbien.sql: removed no longer used concat() aggregate. use builtin string_agg() instead.