Skip to content
Snippets Groups Projects
Commit 6bb2f376 authored by jvfpw18's avatar jvfpw18
Browse files

Add sql scripts submodule

parent b16791f6
Branches
No related tags found
2 merge requests!13v1.1.0,!6Add submodules
...@@ -4,3 +4,6 @@ ...@@ -4,3 +4,6 @@
[submodule "mapping-protocols-hotmapper"] [submodule "mapping-protocols-hotmapper"]
path = mapping-protocols path = mapping-protocols
url = git@gitlab.c3sl.ufpr.br:tools/mapping-protocols-hotmapper.git url = git@gitlab.c3sl.ufpr.br:tools/mapping-protocols-hotmapper.git
[submodule "sql-scripts"]
path = sql-scripts
url = git@gitlab.c3sl.ufpr.br:tools/sql-scripts.git
...@@ -43,13 +43,13 @@ BACKUP_FOLDER = '/home/banco/dumps/monetdb/' ...@@ -43,13 +43,13 @@ BACKUP_FOLDER = '/home/banco/dumps/monetdb/'
BACKUP_FILE = 'backupdadoseducacionais' BACKUP_FILE = 'backupdadoseducacionais'
# Folder where mapping protocols can be found - relative to root # Folder where mapping protocols can be found - relative to root
MAPPING_PROTOCOLS_FOLDER = 'mapping_protocols' MAPPING_PROTOCOLS_FOLDER = 'mapping-protocols'
# Folder for table definitions files # Folder for table definitions files
TABLE_DEFINITIONS_FOLDER = 'table-definitions' TABLE_DEFINITIONS_FOLDER = 'table-definitions'
# Folder for scripts and sql tables # Folder for scripts and sql tables
SCRIPTS_FOLDER = 'sql' SCRIPTS_FOLDER = 'sql-scripts'
# Source table definitions # Source table definitions
SOURCE_TABLE_NAME = 'fonte' SOURCE_TABLE_NAME = 'fonte'
......
Subproject commit 87666dc7f49b358daf0fc81c751ee36e46bc81f0
/*
Copyright (C) 2016 Centro de Computacao Cientifica e Software Livre
Departamento de Informatica - Universidade Federal do Parana - C3SL/UFPR
This file is part of HOTMapper.
HOTMapper is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
HOTMapper is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with HOTMapper. If not, see <https://www.gnu.org/licenses/>.
*/
CREATE TABLE regiao
(
id serial,
nome text not null
);
COPY 5 RECORDS INTO regiao FROM stdin USING DELIMITERS ',','\n';
1,Norte
2,Nordeste
3,Sudeste
4,Sul
5,Centro-Oeste
Source diff could not be displayed: it is too large. Options to address this: view the blob.
Subproject commit 181cf4557f507acf9cc598ee1ca5687397066572 Subproject commit cdea443e34bf09df2223aebe3090c6920442a38a
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment