Skip to content
Snippets Groups Projects
Verified Commit 20cd125f authored by Martin Weise's avatar Martin Weise
Browse files

Updated

parent 76edb0c6
Branches
Tags
2 merge requests!363Resolve "Hotfix query execution",!362Resolve "Hotfix query execution"
...@@ -95,7 +95,8 @@ select `date`, `location`, `mintemp` as `MinTemp`, `rainfall` as `Rainfall` ...@@ -95,7 +95,8 @@ select `date`, `location`, `mintemp` as `MinTemp`, `rainfall` as `Rainfall`
from `weather_aus` from `weather_aus`
where `location` = 'Vienna'); where `location` = 'Vienna');
CREATE VIEW 5c7ba02f681b889892ee82987aa6c74ce45a30973cfef06b78ce797f25189b9 AS -- internal view who should not be indexed into schema
CREATE VIEW 5c7ba02f681b889892ee82987aa6c74ce45a30973cfef06b78ce797f25189b9a AS
( (
select `date`, `location`, `mintemp` as `MinTemp`, `rainfall` as `Rainfall` select `date`, `location`, `mintemp` as `MinTemp`, `rainfall` as `Rainfall`
from `weather_aus` from `weather_aus`
......
...@@ -5,7 +5,7 @@ spring.profiles.active=local,junit ...@@ -5,7 +5,7 @@ spring.profiles.active=local,junit
spring.cloud.discovery.enabled=false spring.cloud.discovery.enabled=false
# internal datasource # internal datasource
spring.datasource.url=jdbc:h2:mem:dbrepo;DB_CLOSE_ON_EXIT=FALSE;INIT=CREATE SCHEMA IF NOT EXISTS dbrepo;NON_KEYWORDS=value spring.datasource.url=jdbc:h2:mem:testdb;DB_CLOSE_ON_EXIT=FALSE;INIT=CREATE SCHEMA IF NOT EXISTS DBREPO;NON_KEYWORDS=value
spring.datasource.driverClassName=org.h2.Driver spring.datasource.driverClassName=org.h2.Driver
spring.datasource.username=sa spring.datasource.username=sa
spring.datasource.password=password spring.datasource.password=password
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment