File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 2323
2424 <para>
2525 <productname>PostgreSQL</productname> offers two types for storing JSON
26- data: <type>json</type> and <type>jsonb</type>. To implement effective query
26+ data: <type>json</type> and <type>jsonb</type>. To implement efficient query
2727 mechanisms for these data types, <productname>PostgreSQL</productname>
2828 also provides the <type>jsonpath</type> data type described in
2929 <xref linkend="datatype-jsonpath"/>.
@@ -233,7 +233,7 @@ SELECT '{"reading": 1.230e-5}'::json, '{"reading": 1.230e-5}'::jsonb;
233233 </sect2>
234234
235235 <sect2 id="json-doc-design">
236- <title>Designing JSON Documents Effectively </title>
236+ <title>Designing JSON Documents</title>
237237 <para>
238238 Representing data as JSON can be considerably more flexible than
239239 the traditional relational data model, which is compelling in
@@ -633,7 +633,7 @@ SELECT jdoc->'guid', jdoc->'name' FROM api WHERE jdoc @> '{"tags": ["qu
633633
634634 <para>
635635 The <type>jsonpath</type> type implements support for the SQL/JSON path language
636- in <productname>PostgreSQL</productname> to effectively query JSON data.
636+ in <productname>PostgreSQL</productname> to efficiently query JSON data.
637637 It provides a binary representation of the parsed SQL/JSON path
638638 expression that specifies the items to be retrieved by the path
639639 engine from the JSON data for further processing with the
You can’t perform that action at this time.
0 commit comments