diff --git a/.resources/033efa2a0048d9da0a8f1cf1b6233f770c4132fa087e8988a84dfefc0ee71f9d b/.resources/033efa2a0048d9da0a8f1cf1b6233f770c4132fa087e8988a84dfefc0ee71f9d deleted file mode 100644 index 959dcd61..00000000 Binary files a/.resources/033efa2a0048d9da0a8f1cf1b6233f770c4132fa087e8988a84dfefc0ee71f9d and /dev/null differ diff --git a/.resources/03c285bb751a428f7804e2dc77b283d86f080908b13b4defda86aa1f99009544 b/.resources/03c285bb751a428f7804e2dc77b283d86f080908b13b4defda86aa1f99009544 deleted file mode 100644 index d3a34717..00000000 --- a/.resources/03c285bb751a428f7804e2dc77b283d86f080908b13b4defda86aa1f99009544 +++ /dev/null @@ -1,20 +0,0 @@ -SELECT - Total_Jam, - Inbound_jam, - Sorter_jam, - 1 AS Total_perc, - Inbound_jam / Total_Jam AS Inbound_perc, - Sorter_jam / Total_Jam AS Sorter_perc, - Startstamp, - Endtstamp -FROM -( - SELECT - MIN(jam_area.t_stamp) AS Startstamp, - MAX(jam_area.t_stamp) AS Endtstamp, - SUM(IFNULL(Inbound_jam, 0) + IFNULL(Sorter_jam, 0)) AS Total_Jam, - SUM(jam_area.Inbound_jam = 1) AS Inbound_jam, - SUM(jam_area.Sorter_jam = 1) AS Sorter_jam - FROM jam_area - WHERE jam_area.t_stamp BETWEEN :starttime AND :endtime -) AS basajam; diff --git a/.resources/0a9e1385d61ecda09a792a90429e7b1710627e68b3d68cf14b3835f172119660 b/.resources/0a9e1385d61ecda09a792a90429e7b1710627e68b3d68cf14b3835f172119660 deleted file mode 100644 index 12976e79..00000000 Binary files a/.resources/0a9e1385d61ecda09a792a90429e7b1710627e68b3d68cf14b3835f172119660 and /dev/null differ diff --git a/.resources/0c4956d9e2514ece749fec8105d052c1e7bc437217016d6b1c353fbe5fbf31eb b/.resources/0c4956d9e2514ece749fec8105d052c1e7bc437217016d6b1c353fbe5fbf31eb new file mode 100644 index 00000000..88798ec0 --- /dev/null +++ b/.resources/0c4956d9e2514ece749fec8105d052c1e7bc437217016d6b1c353fbe5fbf31eb @@ -0,0 +1,50 @@ +SELECT + base.Total_Jam, + base.Inbound_jam, + base.Sorter_jam, + base.Startstamp, + base.Endtstamp, + 1 AS Total_perc, + base.Inbound_jam / NULLIF(base.Total_Jam,0) AS Inbound_perc, + base.Sorter_jam / NULLIF(base.Total_Jam,0) AS Sorter_perc +FROM ( + SELECT + MIN(a.eventtime) AS Startstamp, + MAX(COALESCE(c.eventtime, a.eventtime)) AS Endtstamp, + SUM(a.category = 'Inbound_jam') AS Inbound_jam, + SUM(a.category = 'Sorter_jam') AS Sorter_jam, + SUM(a.category IN ('Inbound_jam','Sorter_jam')) AS Total_Jam + FROM ( + SELECT + ae.id, + ae.eventtime, + ae.eventid, + ae.displaypath AS device, + m.category + FROM alarm_events ae + JOIN ( + SELECT 'UL15_1_TPE1' AS device, 'Inbound_jam' AS category UNION ALL + SELECT 'UL14_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE2', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE3', 'Inbound_jam' UNION ALL + SELECT 'PS3_2_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_4_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_8_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_10_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_12_TPE1', 'Sorter_jam' + ) AS m + ON ae.displaypath = m.device + WHERE ae.eventtype = 0 + AND ae.eventtime BETWEEN :starttime AND :endtime + AND ae.displaypath NOT LIKE '%System Startup%' + AND ae.source NOT LIKE '%System Startup%' + ) AS a + LEFT JOIN ( + SELECT eventid, MIN(eventtime) AS eventtime + FROM alarm_events + WHERE eventtype = 1 + GROUP BY eventid + ) AS c + ON a.eventid = c.eventid +) AS base; diff --git a/.resources/226ab8a21660cc08133d5116bf75bff73dd46482be7fb7cef525f9177fa1f2a3 b/.resources/226ab8a21660cc08133d5116bf75bff73dd46482be7fb7cef525f9177fa1f2a3 deleted file mode 100644 index 956abf73..00000000 Binary files a/.resources/226ab8a21660cc08133d5116bf75bff73dd46482be7fb7cef525f9177fa1f2a3 and /dev/null differ diff --git a/.resources/4da2c9f463452929a6d05a52900872634ef0ce77ff03573e9481a02d9a2f0481 b/.resources/4da2c9f463452929a6d05a52900872634ef0ce77ff03573e9481a02d9a2f0481 deleted file mode 100644 index 8e6abedb..00000000 Binary files a/.resources/4da2c9f463452929a6d05a52900872634ef0ce77ff03573e9481a02d9a2f0481 and /dev/null differ diff --git a/.resources/50b95c7836e21cc861e37ebdbe08a580083394e9b1656fe837582496c96b37f1 b/.resources/50b95c7836e21cc861e37ebdbe08a580083394e9b1656fe837582496c96b37f1 deleted file mode 100644 index cfbc1457..00000000 Binary files a/.resources/50b95c7836e21cc861e37ebdbe08a580083394e9b1656fe837582496c96b37f1 and /dev/null differ diff --git a/.resources/68f94a39b026ea4c12b8fcd76c67d27596cb587a4b4e13303d0d2023b30f9dcb b/.resources/68f94a39b026ea4c12b8fcd76c67d27596cb587a4b4e13303d0d2023b30f9dcb deleted file mode 100644 index 7ee9b0a7..00000000 Binary files a/.resources/68f94a39b026ea4c12b8fcd76c67d27596cb587a4b4e13303d0d2023b30f9dcb and /dev/null differ diff --git a/.resources/72357d1b272cdccd8cee90f628508c6e1b3021084f61d9be4bd990cc6777ddbc b/.resources/72357d1b272cdccd8cee90f628508c6e1b3021084f61d9be4bd990cc6777ddbc deleted file mode 100644 index 1ac3ad0a..00000000 Binary files a/.resources/72357d1b272cdccd8cee90f628508c6e1b3021084f61d9be4bd990cc6777ddbc and /dev/null differ diff --git a/.resources/7a668193c74876f308195dc6f366d2884cb9969c6159e746f1245a940f71bab9 b/.resources/7a668193c74876f308195dc6f366d2884cb9969c6159e746f1245a940f71bab9 deleted file mode 100644 index 7c3f45da..00000000 Binary files a/.resources/7a668193c74876f308195dc6f366d2884cb9969c6159e746f1245a940f71bab9 and /dev/null differ diff --git a/.resources/8a49d2c8173b689f0dc9c8966083b60dd20811a1cd0d170cc08977d78af9e527 b/.resources/8a49d2c8173b689f0dc9c8966083b60dd20811a1cd0d170cc08977d78af9e527 deleted file mode 100644 index 703d728c..00000000 Binary files a/.resources/8a49d2c8173b689f0dc9c8966083b60dd20811a1cd0d170cc08977d78af9e527 and /dev/null differ diff --git a/.resources/8b908fa72861900d8888fb8211212e55da1abe3fca33aefbad9e19280ba93ea3 b/.resources/8b908fa72861900d8888fb8211212e55da1abe3fca33aefbad9e19280ba93ea3 deleted file mode 100644 index f27de789..00000000 Binary files a/.resources/8b908fa72861900d8888fb8211212e55da1abe3fca33aefbad9e19280ba93ea3 and /dev/null differ diff --git a/.resources/90ff2840882ad7a0f893de883dc6548a717870cf66b3ffe84ce0ddec15c68274 b/.resources/90ff2840882ad7a0f893de883dc6548a717870cf66b3ffe84ce0ddec15c68274 deleted file mode 100644 index 131baf4f..00000000 Binary files a/.resources/90ff2840882ad7a0f893de883dc6548a717870cf66b3ffe84ce0ddec15c68274 and /dev/null differ diff --git a/.resources/9a4ec026cfa8bf6d814dd48a5789c1ff2f89d997bf3d649d2af7c0c6ddca54bc b/.resources/9a4ec026cfa8bf6d814dd48a5789c1ff2f89d997bf3d649d2af7c0c6ddca54bc deleted file mode 100644 index 35e1ea27..00000000 Binary files a/.resources/9a4ec026cfa8bf6d814dd48a5789c1ff2f89d997bf3d649d2af7c0c6ddca54bc and /dev/null differ diff --git a/.resources/a163b81369061e7b2fc2849a6cb5d3287bb1d1ec4cdb1d70d7b3e2a811e5e7e3 b/.resources/a163b81369061e7b2fc2849a6cb5d3287bb1d1ec4cdb1d70d7b3e2a811e5e7e3 deleted file mode 100644 index 35834000..00000000 Binary files a/.resources/a163b81369061e7b2fc2849a6cb5d3287bb1d1ec4cdb1d70d7b3e2a811e5e7e3 and /dev/null differ diff --git a/.resources/a5b6083f6e3eed59a89f1bfe0e2791a4ee9798cec5cd547cdca5de56096f43f6 b/.resources/a5b6083f6e3eed59a89f1bfe0e2791a4ee9798cec5cd547cdca5de56096f43f6 deleted file mode 100644 index 5a643155..00000000 Binary files a/.resources/a5b6083f6e3eed59a89f1bfe0e2791a4ee9798cec5cd547cdca5de56096f43f6 and /dev/null differ diff --git a/.resources/aa4bb5bbedce6d0d5ebee983b55c7a931b1f319e8e750a5e0cad084517698ffd b/.resources/aa4bb5bbedce6d0d5ebee983b55c7a931b1f319e8e750a5e0cad084517698ffd deleted file mode 100644 index 4976b497..00000000 --- a/.resources/aa4bb5bbedce6d0d5ebee983b55c7a931b1f319e8e750a5e0cad084517698ffd +++ /dev/null @@ -1,15 +0,0 @@ -SELECT - roundtime, - Inbound_jam, - Sorter_jam -FROM -( - SELECT - SUM(jam_area.Inbound_jam = 1) AS Inbound_jam, - SUM(jam_area.Sorter_jam = 1) AS Sorter_jam, - FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(jam_area.t_stamp) / 600) * 600) AS roundtime - FROM jam_area - WHERE jam_area.t_stamp BETWEEN :starttime AND :endtime - GROUP BY FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(jam_area.t_stamp) / 600) * 600) - ORDER BY roundtime ASC -) AS okeyjam; diff --git a/.resources/ad1659a05032722e3e865cea95a430f519a737884ba7ab712d8d506fc7e111f6 b/.resources/ad1659a05032722e3e865cea95a430f519a737884ba7ab712d8d506fc7e111f6 deleted file mode 100644 index 100fc450..00000000 Binary files a/.resources/ad1659a05032722e3e865cea95a430f519a737884ba7ab712d8d506fc7e111f6 and /dev/null differ diff --git a/.resources/bce922f4f1488d5ef3d883aaba80853e1f9eb69f404caafb4bfd19b00309d38a b/.resources/bce922f4f1488d5ef3d883aaba80853e1f9eb69f404caafb4bfd19b00309d38a new file mode 100644 index 00000000..0d8f3c2b --- /dev/null +++ b/.resources/bce922f4f1488d5ef3d883aaba80853e1f9eb69f404caafb4bfd19b00309d38a @@ -0,0 +1,38 @@ +SELECT + roundtime, + Inbound_jam, + Sorter_jam +FROM ( + SELECT + FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(a.eventtime) / 600) * 600) AS roundtime, + SUM(a.category = 'Inbound_jam') AS Inbound_jam, + SUM(a.category = 'Sorter_jam') AS Sorter_jam + FROM ( + SELECT + ae.eventtime, + m.category + FROM alarm_events ae + JOIN ( + -- Inbound devices + SELECT 'UL15_1_TPE1' AS device, 'Inbound_jam' AS category UNION ALL + SELECT 'UL14_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE2', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE3', 'Inbound_jam' UNION ALL + SELECT 'PS3_2_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_4_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_8_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_10_TPE1', 'Inbound_jam' UNION ALL + + -- Sorter devices + SELECT 'PS3_12_TPE1', 'Sorter_jam' + ) AS m + ON ae.displaypath = m.device + WHERE ae.eventtype = 0 + AND ae.eventtime BETWEEN :starttime AND :endtime + AND ae.displaypath NOT LIKE '%System Startup%' + AND ae.source NOT LIKE '%System Startup%' + ) AS a + GROUP BY FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(a.eventtime) / 600) * 600) + ORDER BY roundtime ASC +) AS okeyjam; diff --git a/.resources/c96c75b33311d09a2df3ac13b1d7948d07dc0835d8b03cc9451fd61f7e463628 b/.resources/c96c75b33311d09a2df3ac13b1d7948d07dc0835d8b03cc9451fd61f7e463628 deleted file mode 100644 index eb246d0d..00000000 Binary files a/.resources/c96c75b33311d09a2df3ac13b1d7948d07dc0835d8b03cc9451fd61f7e463628 and /dev/null differ diff --git a/.resources/d642714bd17b5b609b879ab8fb530bb14a948087b32c6b5e4d6978abdb0263df b/.resources/d642714bd17b5b609b879ab8fb530bb14a948087b32c6b5e4d6978abdb0263df deleted file mode 100644 index e22b9b4c..00000000 Binary files a/.resources/d642714bd17b5b609b879ab8fb530bb14a948087b32c6b5e4d6978abdb0263df and /dev/null differ diff --git a/.resources/e77f5d5c7c087bb1262f7e5b3f532e48500fb6eb154349e6289acca1ef7e7148 b/.resources/e77f5d5c7c087bb1262f7e5b3f532e48500fb6eb154349e6289acca1ef7e7148 deleted file mode 100644 index 4e8539b7..00000000 Binary files a/.resources/e77f5d5c7c087bb1262f7e5b3f532e48500fb6eb154349e6289acca1ef7e7148 and /dev/null differ diff --git a/.resources/f9dc12cc17868c0127b626353ac1ddfdc5cf7f68f82045e9d13528a060903f3d b/.resources/f9dc12cc17868c0127b626353ac1ddfdc5cf7f68f82045e9d13528a060903f3d deleted file mode 100644 index 5d1ac8fb..00000000 Binary files a/.resources/f9dc12cc17868c0127b626353ac1ddfdc5cf7f68f82045e9d13528a060903f3d and /dev/null differ diff --git a/BNA8/com.inductiveautomation.perspective/views/autStand/Equipment/VFD/resource.json b/BNA8/com.inductiveautomation.perspective/views/autStand/Equipment/VFD/resource.json index c9f7211b..26244d64 100644 --- a/BNA8/com.inductiveautomation.perspective/views/autStand/Equipment/VFD/resource.json +++ b/BNA8/com.inductiveautomation.perspective/views/autStand/Equipment/VFD/resource.json @@ -10,8 +10,8 @@ "attributes": { "lastModification": { "actor": "admin", - "timestamp": "2025-09-18T19:21:10Z" + "timestamp": "2025-09-18T19:37:21Z" }, - "lastModificationSignature": "c5b28aa9e82e892f7a7a53b57c2b3eb9edc32956173075f5abc367616d69da2c" + "lastModificationSignature": "a59741c6f4844901815e6d950b0dbdf1263034263340da919f0e85a01be19f7b" } } \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_10_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_10_TPE1/data.bin deleted file mode 100644 index 703d728c..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_10_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_10_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_10_TPE1/resource.json deleted file mode 100644 index ee3d0165..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_10_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:30:35Z" - }, - "lastModificationSignature": "41a403289a580f385f8cbe095a95a382d67c51c99ce56e0d2e02aa6fae652345" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_12_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_12_TPE1/data.bin deleted file mode 100644 index eb246d0d..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_12_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_12_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_12_TPE1/resource.json deleted file mode 100644 index b5d484f5..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_12_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:30:32Z" - }, - "lastModificationSignature": "094dc03f39033b18e0453e94758df8d4b14d8d88f4a39ee4ea986a242c803e98" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE1/data.bin deleted file mode 100644 index 959dcd61..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE1/resource.json deleted file mode 100644 index 1cc51f9d..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:29:56Z" - }, - "lastModificationSignature": "63c8c778795b4a55c4cc0c5f8327f4ac609b16f1ab3eb8d1e4985498361f5fda" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE2/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE2/data.bin deleted file mode 100644 index 8e6abedb..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE2/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE2/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE2/resource.json deleted file mode 100644 index 73c83faf..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE2/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:29:48Z" - }, - "lastModificationSignature": "d29179d61a482afc995e092612b97055accf3bf80a57bf4f9f27d535a872bb8c" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE3/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE3/data.bin deleted file mode 100644 index f27de789..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE3/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE3/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE3/resource.json deleted file mode 100644 index fd7e65cc..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_1_TPE3/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:30:00Z" - }, - "lastModificationSignature": "391b5e8dcfca2b99baa954620327bb9f13ea820e4caa21ca6616eff1cabf27a7" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_2_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_2_TPE1/data.bin deleted file mode 100644 index 1ac3ad0a..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_2_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_2_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_2_TPE1/resource.json deleted file mode 100644 index b8024d94..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_2_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:31:00Z" - }, - "lastModificationSignature": "9d5e9d81ee1ebb272c988675486f24aefc86afb82648bdf2473ea3238982a494" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_4_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_4_TPE1/data.bin deleted file mode 100644 index 956abf73..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_4_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_4_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_4_TPE1/resource.json deleted file mode 100644 index 8983b544..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_4_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:30:55Z" - }, - "lastModificationSignature": "224e6676160856b0b87c20ad68047c78271b98307a8e271af1809396d0b75fdb" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_8_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_8_TPE1/data.bin deleted file mode 100644 index cfbc1457..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_8_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_8_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_8_TPE1/resource.json deleted file mode 100644 index 9fea9657..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/PS3_8_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:30:47Z" - }, - "lastModificationSignature": "a041b0503eefcd2b959447c731b0331b5c16e9c77692c8284d9c46e14891f7ce" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE1/data.bin deleted file mode 100644 index e22b9b4c..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE1/resource.json deleted file mode 100644 index 118783a5..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:27:56Z" - }, - "lastModificationSignature": "661059595bfa76f3d3a19d4a9c311a0daf1f3c91714e516f7904c58df8bcac03" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE10/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE10/data.bin deleted file mode 100644 index 35834000..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE10/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE10/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE10/resource.json deleted file mode 100644 index 8ff32e41..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE10/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:29:04Z" - }, - "lastModificationSignature": "f941436502e27d910152164f23af2a711becb9ff68d9c1101fb0208a79e42dee" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE3/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE3/data.bin deleted file mode 100644 index 7c3f45da..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE3/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE3/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE3/resource.json deleted file mode 100644 index fdc92240..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE3/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:28:16Z" - }, - "lastModificationSignature": "8227a8e77baacf5719b084a2f5fa7ffe9e096654c092e1dcf219bbab22caa18b" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE4/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE4/data.bin deleted file mode 100644 index 4e8539b7..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE4/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE4/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE4/resource.json deleted file mode 100644 index 0475f1d9..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE4/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:26:03Z" - }, - "lastModificationSignature": "8c5b0923e2d27c76fbe01aad0e0daef3288cfb90fa30e9b4473833c5fe96d6cc" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE5/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE5/data.bin deleted file mode 100644 index 5d1ac8fb..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE5/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE5/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE5/resource.json deleted file mode 100644 index 689b7a1c..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE5/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:26:41Z" - }, - "lastModificationSignature": "4932f70924bc0ad9d1074e6a35199a7c9f018a78a9567a88a7cfd5172fe123e7" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE6/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE6/data.bin deleted file mode 100644 index 12976e79..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE6/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE6/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE6/resource.json deleted file mode 100644 index 4f6e2f0f..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE6/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:27:17Z" - }, - "lastModificationSignature": "0aa3fc131cacca44d91e99e1c5334e2570ad9b45280f39f43216cd7e62e3d048" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE7/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE7/data.bin deleted file mode 100644 index 131baf4f..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE7/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE7/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE7/resource.json deleted file mode 100644 index 0466767b..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE7/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:28:31Z" - }, - "lastModificationSignature": "d8c2310145547ba9561ab079092210b5dde35aaf8599badb3ae691bd3d0d9c7b" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE8/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE8/data.bin deleted file mode 100644 index 35e1ea27..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE8/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE8/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE8/resource.json deleted file mode 100644 index 56083977..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE8/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:28:43Z" - }, - "lastModificationSignature": "ce52196410e48c505cb1f5d16c6ae84ced3f927650d7a03b473a5e6a82c66cd9" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE9/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE9/data.bin deleted file mode 100644 index 100fc450..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE9/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE9/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE9/resource.json deleted file mode 100644 index 321e93d8..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/S03_1_LRPE9/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:29:00Z" - }, - "lastModificationSignature": "fe0d39e2562f8535b54ac5e7e608e2b527d42d5d4fb8bfdb92fe4f0bc60944cb" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL14_1_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL14_1_TPE1/data.bin deleted file mode 100644 index 5a643155..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL14_1_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL14_1_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL14_1_TPE1/resource.json deleted file mode 100644 index a4c6d797..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL14_1_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:29:15Z" - }, - "lastModificationSignature": "c5be6f37dfebf70d1631febedb0cbbb8ad836852283e9b6e9454ba49be8c19c2" - } -} \ No newline at end of file diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL15_1_TPE1/data.bin b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL15_1_TPE1/data.bin deleted file mode 100644 index 7ee9b0a7..00000000 Binary files a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL15_1_TPE1/data.bin and /dev/null differ diff --git a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL15_1_TPE1/resource.json b/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL15_1_TPE1/resource.json deleted file mode 100644 index f1a02e49..00000000 --- a/BNA8/com.inductiveautomation.sqlbridge/transaction-groups/UL15_1_TPE1/resource.json +++ /dev/null @@ -1,16 +0,0 @@ -{ - "scope": "G", - "version": 1, - "restricted": false, - "overridable": true, - "files": [ - "data.bin" - ], - "attributes": { - "lastModification": { - "actor": "admin", - "timestamp": "2025-09-02T08:26:03Z" - }, - "lastModificationSignature": "7879c312980f3c128fa3ee7f8b78c4eff5bab6497bc71dcb81852b0273b3edfd" - } -} \ No newline at end of file diff --git a/BNA8/ignition/named-query/Jam_Area/Jam/query.sql b/BNA8/ignition/named-query/Jam_Area/Jam/query.sql index d3a34717..88798ec0 100644 --- a/BNA8/ignition/named-query/Jam_Area/Jam/query.sql +++ b/BNA8/ignition/named-query/Jam_Area/Jam/query.sql @@ -1,20 +1,50 @@ SELECT - Total_Jam, - Inbound_jam, - Sorter_jam, + base.Total_Jam, + base.Inbound_jam, + base.Sorter_jam, + base.Startstamp, + base.Endtstamp, 1 AS Total_perc, - Inbound_jam / Total_Jam AS Inbound_perc, - Sorter_jam / Total_Jam AS Sorter_perc, - Startstamp, - Endtstamp -FROM -( + base.Inbound_jam / NULLIF(base.Total_Jam,0) AS Inbound_perc, + base.Sorter_jam / NULLIF(base.Total_Jam,0) AS Sorter_perc +FROM ( SELECT - MIN(jam_area.t_stamp) AS Startstamp, - MAX(jam_area.t_stamp) AS Endtstamp, - SUM(IFNULL(Inbound_jam, 0) + IFNULL(Sorter_jam, 0)) AS Total_Jam, - SUM(jam_area.Inbound_jam = 1) AS Inbound_jam, - SUM(jam_area.Sorter_jam = 1) AS Sorter_jam - FROM jam_area - WHERE jam_area.t_stamp BETWEEN :starttime AND :endtime -) AS basajam; + MIN(a.eventtime) AS Startstamp, + MAX(COALESCE(c.eventtime, a.eventtime)) AS Endtstamp, + SUM(a.category = 'Inbound_jam') AS Inbound_jam, + SUM(a.category = 'Sorter_jam') AS Sorter_jam, + SUM(a.category IN ('Inbound_jam','Sorter_jam')) AS Total_Jam + FROM ( + SELECT + ae.id, + ae.eventtime, + ae.eventid, + ae.displaypath AS device, + m.category + FROM alarm_events ae + JOIN ( + SELECT 'UL15_1_TPE1' AS device, 'Inbound_jam' AS category UNION ALL + SELECT 'UL14_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE2', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE3', 'Inbound_jam' UNION ALL + SELECT 'PS3_2_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_4_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_8_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_10_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_12_TPE1', 'Sorter_jam' + ) AS m + ON ae.displaypath = m.device + WHERE ae.eventtype = 0 + AND ae.eventtime BETWEEN :starttime AND :endtime + AND ae.displaypath NOT LIKE '%System Startup%' + AND ae.source NOT LIKE '%System Startup%' + ) AS a + LEFT JOIN ( + SELECT eventid, MIN(eventtime) AS eventtime + FROM alarm_events + WHERE eventtype = 1 + GROUP BY eventid + ) AS c + ON a.eventid = c.eventid +) AS base; diff --git a/BNA8/ignition/named-query/Jam_Area/Jam/resource.json b/BNA8/ignition/named-query/Jam_Area/Jam/resource.json index 6f710d8b..0f12645a 100644 --- a/BNA8/ignition/named-query/Jam_Area/Jam/resource.json +++ b/BNA8/ignition/named-query/Jam_Area/Jam/resource.json @@ -18,7 +18,7 @@ "cacheEnabled": false, "database": "MariaDB", "fallbackEnabled": false, - "lastModificationSignature": "d28148e533b521ca7448a7a35e2fd2582364e52564a09582e0003b134f568ec6", + "lastModificationSignature": "1b827a02dae8f111f327bf3f538cde6a523ebb07e0f63ecd029cb52dd92b3355", "permissions": [ { "zone": "", @@ -27,7 +27,7 @@ ], "lastModification": { "actor": "admin", - "timestamp": "2025-09-02T06:58:02Z" + "timestamp": "2025-09-19T08:53:02Z" }, "syntaxProvider": "class com.adbs.syntax.MySQLSyntaxProvider", "parameters": [ diff --git a/BNA8/ignition/named-query/Jam_Area/Jam_graph/query.sql b/BNA8/ignition/named-query/Jam_Area/Jam_graph/query.sql index 4976b497..0d8f3c2b 100644 --- a/BNA8/ignition/named-query/Jam_Area/Jam_graph/query.sql +++ b/BNA8/ignition/named-query/Jam_Area/Jam_graph/query.sql @@ -2,14 +2,37 @@ SELECT roundtime, Inbound_jam, Sorter_jam -FROM -( +FROM ( SELECT - SUM(jam_area.Inbound_jam = 1) AS Inbound_jam, - SUM(jam_area.Sorter_jam = 1) AS Sorter_jam, - FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(jam_area.t_stamp) / 600) * 600) AS roundtime - FROM jam_area - WHERE jam_area.t_stamp BETWEEN :starttime AND :endtime - GROUP BY FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(jam_area.t_stamp) / 600) * 600) + FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(a.eventtime) / 600) * 600) AS roundtime, + SUM(a.category = 'Inbound_jam') AS Inbound_jam, + SUM(a.category = 'Sorter_jam') AS Sorter_jam + FROM ( + SELECT + ae.eventtime, + m.category + FROM alarm_events ae + JOIN ( + -- Inbound devices + SELECT 'UL15_1_TPE1' AS device, 'Inbound_jam' AS category UNION ALL + SELECT 'UL14_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE2', 'Inbound_jam' UNION ALL + SELECT 'PS3_1_TPE3', 'Inbound_jam' UNION ALL + SELECT 'PS3_2_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_4_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_8_TPE1', 'Inbound_jam' UNION ALL + SELECT 'PS3_10_TPE1', 'Inbound_jam' UNION ALL + + -- Sorter devices + SELECT 'PS3_12_TPE1', 'Sorter_jam' + ) AS m + ON ae.displaypath = m.device + WHERE ae.eventtype = 0 + AND ae.eventtime BETWEEN :starttime AND :endtime + AND ae.displaypath NOT LIKE '%System Startup%' + AND ae.source NOT LIKE '%System Startup%' + ) AS a + GROUP BY FROM_UNIXTIME(CEIL(UNIX_TIMESTAMP(a.eventtime) / 600) * 600) ORDER BY roundtime ASC ) AS okeyjam; diff --git a/BNA8/ignition/named-query/Jam_Area/Jam_graph/resource.json b/BNA8/ignition/named-query/Jam_Area/Jam_graph/resource.json index f559bfa8..14d60900 100644 --- a/BNA8/ignition/named-query/Jam_Area/Jam_graph/resource.json +++ b/BNA8/ignition/named-query/Jam_Area/Jam_graph/resource.json @@ -18,7 +18,7 @@ "cacheEnabled": false, "database": "MariaDB", "fallbackEnabled": false, - "lastModificationSignature": "65838fd0226973bf25313a996070f752a5cd7a6ed291d4d8bf67790fb30da27d", + "lastModificationSignature": "77bfc7726fc29934c742d2a4f63ce08cd90bf49f60e41651c741195d8c323e6d", "permissions": [ { "zone": "", @@ -27,7 +27,7 @@ ], "lastModification": { "actor": "admin", - "timestamp": "2025-09-01T15:54:27Z" + "timestamp": "2025-09-19T08:54:29Z" }, "syntaxProvider": "class com.adbs.syntax.MySQLSyntaxProvider", "parameters": [ diff --git a/conversion-report.txt b/conversion-report.txt index 6d4a3b29..a19476b6 100644 --- a/conversion-report.txt +++ b/conversion-report.txt @@ -32,3 +32,5 @@ Starting conversion: 20250915:10.46.20 Conversion finished. Elapsed time: 10 ms Starting conversion: 20250918:20.02.12 Conversion finished. Elapsed time: 11 ms +Starting conversion: 20250919:12.08.01 +Conversion finished. Elapsed time: 10 ms