Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
4ec700a8
Commit
4ec700a8
authored
Feb 27, 2010
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Entity-ify a few new uses of literal <, >, and &.
parent
5667a53b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
10 deletions
+10
-10
doc/src/sgml/ecpg.sgml
doc/src/sgml/ecpg.sgml
+5
-5
doc/src/sgml/hstore.sgml
doc/src/sgml/hstore.sgml
+2
-2
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/create_table.sgml
+3
-3
No files found.
doc/src/sgml/ecpg.sgml
View file @
4ec700a8
<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.9
7 2010/02/19 00:15:25 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/ecpg.sgml,v 1.9
8 2010/02/27 04:29:44 tgl
Exp $ -->
<chapter id="ecpg">
<title><application>ECPG</application> - Embedded <acronym>SQL</acronym> in C</title>
...
...
@@ -3204,9 +3204,9 @@ EXEC SQL INCLUDE sqlda.h;
EXEC SQL DESCRIBE mystmt INTO sqlda;
printf("# of fields: %d\n", sqlda-
>
sqld);
for (i = 0; i
< sqlda->
sqld; i++)
printf("field %d: \"%s\"\n", sqlda-
>sqlvar[i]->
sqlname);
printf("# of fields: %d\n", sqlda-
>
sqld);
for (i = 0; i
< sqlda->
sqld; i++)
printf("field %d: \"%s\"\n", sqlda-
>sqlvar[i]->
sqlname);
EXEC SQL DECLARE mycursor CURSOR FOR mystmt;
EXEC SQL OPEN mycursor;
...
...
@@ -3220,7 +3220,7 @@ EXEC SQL INCLUDE sqlda.h;
EXEC SQL CLOSE mycursor;
free(sqlda); /* The main structure is all to be free(),
* sqlda and sqlda-
>
sqlvar is in one allocated area */
* sqlda and sqlda-
>
sqlvar is in one allocated area */
</programlisting>
For more information, see the <literal>sqlda.h</> header and the
<literal>src/interfaces/ecpg/test/compat_informix/sqlda.pgc</literal> regression test.
...
...
doc/src/sgml/hstore.sgml
View file @
4ec700a8
<!-- $PostgreSQL: pgsql/doc/src/sgml/hstore.sgml,v 1.
7 2010/02/17 04:19:37
tgl Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/hstore.sgml,v 1.
8 2010/02/27 04:29:44
tgl Exp $ -->
<sect1 id="hstore">
<title>hstore</title>
...
...
@@ -401,7 +401,7 @@ b
<para>
<type>hstore</> has GiST and GIN index support for the <literal>@></>,
<literal>?</>, <literal>?&</> and <literal>?|</> operators. For example:
<literal>?</>, <literal>?&
amp;
</> and <literal>?|</> operators. For example:
</para>
<programlisting>
CREATE INDEX hidx ON testhstore USING GIST (h);
...
...
doc/src/sgml/ref/create_table.sgml
View file @
4ec700a8
<!--
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.12
2 2010/02/22 23:51:40 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/ref/create_table.sgml,v 1.12
3 2010/02/27 04:29:44 tgl
Exp $
PostgreSQL documentation
-->
...
...
@@ -471,7 +471,7 @@ CREATE [ [ GLOBAL | LOCAL ] { TEMPORARY | TEMP } ] TABLE <replaceable class="PAR
For example, you can specify a constraint that
no two rows in the table contain overlapping circles
(see <xref linkend="datatype-geometric">) by using the
<literal>&
&
</> operator.
<literal>&
amp;&
</> operator.
</para>
<para>
...
...
@@ -1183,7 +1183,7 @@ WITH (fillfactor=70);
<programlisting>
CREATE TABLE circles (
c circle,
EXCLUDE USING gist (c WITH &
&
)
EXCLUDE USING gist (c WITH &
amp;&
)
);
</programlisting>
</para>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment