[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-05-25 Thread Elbin Pallimalil
https://bugs.kde.org/show_bug.cgi?id=402229

Elbin Pallimalil  changed:

   What|Removed |Added

 CC||elbi...@gmail.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-04-01 Thread Michael Palimaka
https://bugs.kde.org/show_bug.cgi?id=402229

Michael Palimaka  changed:

   What|Removed |Added

 CC||kensing...@gentoo.org

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-03-24 Thread bugzilla_noreply
https://bugs.kde.org/show_bug.cgi?id=402229

andreas.sturmlech...@gmail.com changed:

   What|Removed |Added

 CC||andreas.sturmlechner@gmail.
   ||com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-02-06 Thread Daniel Vrátil
https://bugs.kde.org/show_bug.cgi?id=402229

--- Comment #5 from Daniel Vrátil  ---
Git commit 42d6c38c4dc619f23ca00ad42d9c538fc9ca2f78 by Daniel Vrátil, on behalf
of Konrad Rzepecki.
Committed on 06/02/2019 at 17:14.
Pushed by dvratil into branch 'Applications/18.12'.

Fix SQLite backend foreign key PRAGMAs

Summary:
SQLite backend contain "PRAGMA foreign_key_check=OFF/ON" which ins't correct
SQLite syntax.  Author intention was probably disengage key checking. In
SQLlite this can be achieved be temporary deffer key check.  Correct syntax is
in this case "PRAGMA defer_foreign_keys=ON/OFF".  This partial resolves bug
402229.

Reviewers: dvratil

Reviewed By: dvratil

Subscribers: lbeltrame, anthonyfieroni, kde-pim

Tags: #kde_pim

Differential Revision: https://phabricator.kde.org/D18781

M  +46   -46   autotests/server/dbtest_data/dbinit_sqlite
M  +50   -50   autotests/server/dbtest_data/dbinit_sqlite_incremental
M  +2-2src/server/storage/dbinitializer_p.cpp

https://commits.kde.org/akonadi/42d6c38c4dc619f23ca00ad42d9c538fc9ca2f78

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-02-05 Thread Christophe Giboudeaux
https://bugs.kde.org/show_bug.cgi?id=402229

--- Comment #4 from Christophe Giboudeaux  ---
Please submit your patch using phabricator.kde.org.

You can find information here:
https://community.kde.org/Infrastructure/Phabricator

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-02-05 Thread Konrad Rzepecki
https://bugs.kde.org/show_bug.cgi?id=402229

--- Comment #3 from Konrad Rzepecki  ---
Created attachment 117837
  --> https://bugs.kde.org/attachment.cgi?id=117837=edit
Patch witch PRAGMA changes suggested by Maël

I've attached patch with PRAGMA changes suggested by Maël. "PRAGMA
foreign_key_check=OFF" is definitely wrong syntax according SQLite
documentation. I have no idea if "PRAGMA defer_foreign_keys=ON" is a correct
replacement, but as Maël wrote, it works.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-02-04 Thread Konrad Rzepecki
https://bugs.kde.org/show_bug.cgi?id=402229

Konrad Rzepecki  changed:

   What|Removed |Added

 CC||hanni...@astral.lodz.pl

--- Comment #2 from Konrad Rzepecki  ---
I have same problem in Slackware-current with alien KDE5/Plasma packages.

@Maël:
Are this PRAGMA changes are possible in compiled akonadi?

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2019-01-24 Thread Reuben
https://bugs.kde.org/show_bug.cgi?id=402229

Reuben  changed:

   What|Removed |Added

 CC||reube...@yahoo.com

-- 
You are receiving this mail because:
You are the assignee for the bug.

[Akonadi] [Bug 402229] Sqlite backend error with schema update 36 & 37 (5.10.0)

2018-12-17 Thread Maël Kerbiriou
https://bugs.kde.org/show_bug.cgi?id=402229

--- Comment #1 from Maël Kerbiriou  ---
This change in the code make it working for me:

s/PRAGMA foreign_key_check=OFF/PRAGMA defer_foreign_keys=ON/
s/PRAGMA foreign_key_check=ON/PRAGMA defer_foreign_keys=OFF/

-- 
You are receiving this mail because:
You are the assignee for the bug.