Revision 2980
Added by Aaron Marcuse-Kubitza over 12 years ago
schemas/temp.sql | ||
---|---|---|
1 |
-- |
|
2 |
-- PostgreSQL database dump |
|
3 |
-- |
|
4 |
|
|
5 |
SET statement_timeout = 0; |
|
6 |
SET client_encoding = 'UTF8'; |
|
7 |
SET standard_conforming_strings = off; |
|
8 |
SET check_function_bodies = false; |
|
9 |
SET client_min_messages = warning; |
|
10 |
SET escape_string_warning = off; |
|
11 |
|
|
12 |
-- |
|
13 |
-- Name: temp; Type: SCHEMA; Schema: -; Owner: - |
|
14 |
-- |
|
15 |
|
|
16 |
CREATE SCHEMA temp; |
|
17 |
|
|
18 |
|
|
19 |
-- |
|
20 |
-- PostgreSQL database dump complete |
|
21 |
-- |
|
22 |
|
Makefile | ||
---|---|---|
203 | 203 |
|
204 | 204 |
#### Schemas |
205 | 205 |
|
206 |
schemas := functions py_functions public |
|
206 |
schemas := temp functions py_functions public
|
|
207 | 207 |
schemas/install: $(schemas:%=schemas/%/install) ; |
208 | 208 |
|
209 |
schemasReversed := public py_functions functions |
|
209 |
schemasReversed := public py_functions functions temp
|
|
210 | 210 |
schemas/uninstall: $(schemasReversed:%=schemas/%/uninstall) ; |
211 | 211 |
|
212 | 212 |
### public |
Also available in: Unified diff
Added temp schema to store intermediate tables permanently when desired for debugging. It is not part of schemas/all because it should not be remade to include current intermediate tables when remaking other schema exports.