@superhero/eventflow-db 4.4.0 → 4.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,7 +1,10 @@
|
|
|
1
1
|
SELECT event.*
|
|
2
2
|
FROM event_cpid
|
|
3
|
+
|
|
3
4
|
JOIN event
|
|
4
|
-
ON event_id = event.id
|
|
5
|
+
ON event_id = event.id
|
|
6
|
+
|
|
5
7
|
WHERE event_cpid.cpid = CAST(? AS CHAR CHARACTER SET ascii) COLLATE ascii_bin
|
|
6
8
|
AND event_cpid.domain = CAST(? AS CHAR CHARACTER SET ascii) COLLATE ascii_bin
|
|
9
|
+
|
|
7
10
|
ORDER BY timestamp ASC
|