We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e723f8 commit 653f4adCopy full SHA for 653f4ad
1 file changed
examples/official-site/performance.sql
@@ -2,7 +2,10 @@ select 'http_header' as component,
2
'public, max-age=600, stale-while-revalidate=3600, stale-if-error=86400' as "Cache-Control",
3
'<https://sql-page.com/performance>; rel="canonical"' as "Link";
4
5
-select 'dynamic' as component, properties FROM example WHERE component = 'shell' LIMIT 1;
+select 'dynamic' as component, json_patch(json_extract(properties, '$[0]'), json_object(
6
+ 'title', 'SQLPage applications are fast'
7
+)) as properties
8
+FROM example WHERE component = 'shell' LIMIT 1;
9
10
select 'hero' as component,
11
'Performance in SQLPage' as title,
0 commit comments