Bug 39259 - SQL reports should allow Common Table Expressions
Summary: SQL reports should allow Common Table Expressions
Status: NEW
Alias: None
Product: Koha
Classification: Unclassified
Component: Reports (show other bugs)
Version: Main
Hardware: All All
: P5 - low minor
Assignee: Bugs List
QA Contact: Testopia
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2025-03-05 22:02 UTC by Michał
Modified: 2025-03-12 08:27 UTC (History)
2 users (show)

See Also:
Change sponsored?: ---
Patch complexity: ---
Documentation contact:
Documentation submission:
Text to go in the release notes:
Version(s) released in:
Circulation function:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Michał 2025-03-05 22:02:31 UTC
Common table expression in MySQL is a syntax like this:

WITH
  cte1 AS (SELECT a, b FROM table1),
  cte2 AS (SELECT c, d FROM table2)
SELECT b, d FROM cte1 JOIN cte2
WHERE cte1.a = cte2.c;

However, in Koha/Koha/Report.pm, there's func is_sql_valid:

    } elsif ( $sql !~ /^\s*SELECT\b\s*/i ) {
        push @errors, { queryerr => 'Missing SELECT' };
    }

It should be changed to SELECT|WITH, otherwise it won't allow these nice queries, instead having you to do an ugly workaround like this:

SELECT * FROM (

WITH
  cte1 AS (SELECT a, b FROM table1),
  cte2 AS (SELECT c, d FROM table2)
SELECT b, d FROM cte1 JOIN cte2
WHERE cte1.a = cte2.c

) AS dt;
Comment 1 David Cook 2025-03-05 23:54:54 UTC
I'm not sure that will work because it would allow the following:

WITH ... SELECT ...
WITH ... UPDATE ...
WITH ... DELETE ...
Comment 2 David Cook 2025-03-05 23:55:50 UTC
As you noted on Mattermost, I think SQL reports really should have a dedicated read-only user, so that permissions can be managed ultimately by the DB rather than Koha.
Comment 3 David Cook 2025-03-05 23:57:19 UTC
Actually, now you've gotten me thinking about ways to try to bypass the system...