Skip to content

Commit 1c43fa7

Browse files
committed
Add support for typedef, which allows clusters/structs to create distinct types that aliases to the raw type for better readability & documentation-by-code, e.g. IDs
1 parent db1f907 commit 1c43fa7

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src-electron/db/zap-schema.sql

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3409,13 +3409,13 @@ WHERE SESSION_ID = OLD.SESSION_REF;
34093409
END;
34103410

34113411
/*
3412-
____ _ _ ____ ___ ____ _ _ _ _ _ _ _ ___ ____ _ ____ ____ ____ ____ ____
3413-
| | | [__ | | | |\/| \/ |\/| | | |__/ | | __ | __ |___ |__/ [__
3414-
|___ |__| ___] | |__| | | _/\_ | | |___ | | \ | |__] |__] |___ | \ ___]
3412+
____ _ _ ____ ___ ____ _ _ _ _ _ _ _ ___ ____ _ ____ ____ ____ ____ ____
3413+
| | | [__ | | | |\/| \/ |\/| | | |__/ | | __ | __ |___ |__/ [__
3414+
|___ |__| ___] | |__| | | _/\_ | | |___ | | \ | |__] |__] |___ | \ ___]
34153415
34163416
Custom XML specific triggers
3417-
*/
3418-
3417+
*/
3418+
34193419
/* Triggers that deal with code conflicts in custom xml */
34203420

34213421
/* Trigger that deals with code conflicts in clusters when new session package is inserted */
@@ -4108,9 +4108,9 @@ BEGIN
41084108
0
41094109
FROM
41104110
COMMAND_ARG a
4111-
INNER JOIN
4111+
INNER JOIN
41124112
COMMAND c
4113-
ON
4113+
ON
41144114
a.COMMAND_REF = c.COMMAND_ID
41154115
INNER JOIN
41164116
PACKAGE p
@@ -4192,9 +4192,9 @@ BEGIN
41924192
0
41934193
FROM
41944194
COMMAND_ARG a
4195-
INNER JOIN
4195+
INNER JOIN
41964196
COMMAND c
4197-
ON
4197+
ON
41984198
a.COMMAND_REF = c.COMMAND_ID
41994199
INNER JOIN
42004200
PACKAGE p
@@ -4276,7 +4276,7 @@ BEGIN
42764276
EVENT_FIELD f
42774277
INNER JOIN
42784278
EVENT e
4279-
ON
4279+
ON
42804280
f.EVENT_REF = e.EVENT_ID
42814281
INNER JOIN
42824282
PACKAGE p
@@ -4360,7 +4360,7 @@ BEGIN
43604360
EVENT_FIELD f
43614361
INNER JOIN
43624362
EVENT e
4363-
ON
4363+
ON
43644364
f.EVENT_REF = e.EVENT_ID
43654365
INNER JOIN
43664366
PACKAGE p

0 commit comments

Comments
 (0)