You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@griffin.apache.org by "ASF GitHub Bot (JIRA)" <ji...@apache.org> on 2019/03/04 01:56:00 UTC

[jira] [Work logged] (GRIFFIN-231) Database initialisation fails on Postgresql

     [ https://issues.apache.org/jira/browse/GRIFFIN-231?focusedWorklogId=206974&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-206974 ]

ASF GitHub Bot logged work on GRIFFIN-231:
------------------------------------------

                Author: ASF GitHub Bot
            Created on: 04/Mar/19 01:55
            Start Date: 04/Mar/19 01:55
    Worklog Time Spent: 10m 
      Work Description: asfgit commented on pull request #481: fix GRIFFIN-231
URL: https://github.com/apache/griffin/pull/481
 
 
   
 
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


Issue Time Tracking
-------------------

    Worklog Id:     (was: 206974)
    Time Spent: 20m  (was: 10m)

> Database initialisation fails on Postgresql
> -------------------------------------------
>
>                 Key: GRIFFIN-231
>                 URL: https://issues.apache.org/jira/browse/GRIFFIN-231
>             Project: Griffin (Incubating)
>          Issue Type: Bug
>    Affects Versions: 0.5.0
>            Reporter: Dimitris Stafylarakis
>            Priority: Minor
>          Time Spent: 20m
>  Remaining Estimate: 0h
>
> The script service/src/main/resources/Init_quartz_postgres.sql contains the following statements that lead to an exception (table does not exist)
> {code:java}
> // code SQL
> drop table qrtz_fired_triggers;
> DROP TABLE QRTZ_PAUSED_TRIGGER_GRPS;
> DROP TABLE QRTZ_SCHEDULER_STATE;
> DROP TABLE QRTZ_LOCKS;
> drop table qrtz_simple_triggers;
> drop table qrtz_cron_triggers;
> drop table qrtz_simprop_triggers;
> DROP TABLE QRTZ_BLOB_TRIGGERS;
> drop table qrtz_triggers;
> drop table qrtz_job_details;
> drop table qrtz_calendars;
> {code}
> Other platforms (e.g., mysql) use the DROP TABLE IF EXISTS statement instead. The postgres variant should use this as well.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)