Skip to content

Commit bdbf216

Browse files
ShahanaFarooquiddustin
authored andcommitted
docs: Added json_object and json_group_array to permitted_sqlite3_functions list
1 parent c7b55cb commit bdbf216

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

contrib/msggen/msggen/schema.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32538,7 +32538,9 @@
3253832538
"* time",
3253932539
"* timediff",
3254032540
"* total",
32541-
"* unixepoch"
32541+
"* unixepoch",
32542+
"* json_object",
32543+
"* json_group_array"
3254232544
],
3254332545
"tables": [
3254432546
"Note that the first column of every table is a unique integer called `rowid`: this is used for related tables to refer to specific rows in their parent. sqlite3 usually has this as an implicit column, but we make it explicit as the implicit version is not allowed to be used as a foreign key.",

doc/schemas/sql-template.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,9 @@
107107
"* time",
108108
"* timediff",
109109
"* total",
110-
"* unixepoch"
110+
"* unixepoch",
111+
"* json_object",
112+
"* json_group_array"
111113
],
112114
"tables": [
113115
"Note that the first column of every table is a unique integer called `rowid`: this is used for related tables to refer to specific rows in their parent. sqlite3 usually has this as an implicit column, but we make it explicit as the implicit version is not allowed to be used as a foreign key.",

0 commit comments

Comments
 (0)