Skip to content

Commit

Permalink
Correction d'erreurs de structure sur les tables
Browse files Browse the repository at this point in the history
- <entry> en trop par rapport au nombre déclaré de colonnes
- au contraire, <entry> manquant
- <tgroup cols="N"> où N est incorrect
- colspec manquant

Ces erreurs font échouer la génération du PDF avec fop 1.1
  • Loading branch information
dverite authored and gleu committed Nov 14, 2018
1 parent a8a2403 commit 344daf8
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 14 deletions.
7 changes: 5 additions & 2 deletions postgresql/catalogs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4509,14 +4509,17 @@ SCRAM-SHA-256$<replaceable>&lt;nombre d'itération&gt;</replaceable>:<replaceabl
<table>
<title>Colonnes de <structname>pg_largeobject_metadata</structname></title>

<tgroup cols="3">
<tgroup cols="4">
<colspec colnum="1" colwidth="1.0*"/>
<colspec colnum="2" colwidth="0.7*"/>
<colspec colnum="3" colwidth="1.6*"/>
<colspec colnum="3" colwidth="1.0*"/>
<colspec colnum="4" colwidth="1.6*"/>

<thead>
<row>
<entry>Nom</entry>
<entry>Type</entry>
<entry>Références</entry>
<entry>Description</entry>
</row>
</thead>
Expand Down
2 changes: 1 addition & 1 deletion postgresql/datatype.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2211,7 +2211,7 @@ SELECT 'abc \153\154\155 \052\251\124'::bytea;

<table id="datatype-datetime-special-table">
<title>Saisie de dates/heures spéciales</title>
<tgroup cols="2">
<tgroup cols="3">
<thead>
<row>
<entry>Saisie</entry>
Expand Down
7 changes: 0 additions & 7 deletions postgresql/func.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10245,7 +10245,6 @@ CREATE TYPE couleurs AS ENUM ('rouge', 'orange', 'jaune', 'vert', 'bleu', 'viole
<entry>fonction déclencheur pour la mise à jour automatique de colonne <type>tsvector</type></entry>
<entry><literal>CREATE TRIGGER ... tsvector_update_trigger_column(tsvcol, configcol, title, body)</literal></entry>
<entry><literal></literal></entry>
<entry><literal></literal></entry>
</row>
<row>
<entry>
Expand Down Expand Up @@ -11820,7 +11819,6 @@ transformation-table2
<entry>
<literal>array_to_json(anyarray [, pretty_bool])</literal>
</entry>
<entry><type>json</type></entry>
<entry>
Renvoie le tableau sous la forme d'un tableau JSON. Un tableau PostgreSQL multi-dimensionnel
devient un tableau JSON de tableaux. Des retours à la ligne seront
Expand All @@ -11834,7 +11832,6 @@ transformation-table2
<entry>
<literal>row_to_json(record [, pretty_bool])</literal>
</entry>
<entry><type>json</type></entry>
<entry>
Renvoie la ligne sous la forme d'un objet JSON. Des retours à la ligne seront
ajoutés entre les éléments du niveau 1 si <parameter>pretty_bool</parameter>
Expand All @@ -11847,7 +11844,6 @@ transformation-table2
<entry><para><literal>json_build_array(VARIADIC "any")</literal>
</para><para><literal>jsonb_build_array(VARIADIC "any")</literal>
</para></entry>
<entry><type>json</type></entry>
<entry>
Construit un table JSON de type possiblement hétérogène à partir d'une
liste d'arguments variables.
Expand All @@ -11859,7 +11855,6 @@ transformation-table2
<entry>
<literal>json_build_object(VARIADIC "any")</literal>
</entry>
<entry><type>int</type></entry>
<entry>
Construit un objet JSON à partir d'une liste d'arguments variables.
Par convention, la liste d'arguments consiste en des clés et valeurs
Expand Down Expand Up @@ -12051,7 +12046,6 @@ transformation-table2
<entry><para><literal>setof key text, value json</literal>
</para><para><literal>setof key text, value jsonb</literal>
</para></entry>
<entry><type>SETOF key text, value json</type></entry>
<entry>
Étend l'objet JSON extérieur en un ensemble de paires clé/valeur.
</entry>
Expand Down Expand Up @@ -12090,7 +12084,6 @@ transformation-table2
</para></entry>
<entry><para><type>json</type></para><para><type>jsonb</type>
</para></entry>
<entry><type>json</type></entry>
<entry>
Renvoie l'objet JSON pointé par <replaceable>path_elems</replaceable>
(equivalent à l'opérateur <literal>#&gt;</literal>).
Expand Down
3 changes: 0 additions & 3 deletions postgresql/information_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,6 @@

<row>
<entry><literal>interval_precision</literal></entry>
<entry><type>character_data</type></entry>
<entry><type>cardinal_number</type></entry>
<entry>
S'applique à une fonctionnalité non disponible dans
Expand Down Expand Up @@ -1493,7 +1492,6 @@
<row>
<entry><literal>interval_precision</literal></entry>
<entry><type>character_data</type></entry>
<entry><type>cardinal_number</type></entry>
<entry>
S'applique à une fonctionnalité non disponible dans
<productname>PostgreSQL</productname> (voir
Expand Down Expand Up @@ -2373,7 +2371,6 @@

<row>
<entry><literal>interval_precision</literal></entry>
<entry><type>character_data</type></entry>
<entry><type>cardinal_number</type></entry>
<entry>
S'applique à une fonctionnalité non disponible dans
Expand Down
2 changes: 1 addition & 1 deletion postgresql/xindex.xml
Original file line number Diff line number Diff line change
Expand Up @@ -619,7 +619,7 @@

<table tocentry="1" id="xindex-gin-support-table">
<title>Fonctions d'appui GIN</title>
<tgroup cols="2">
<tgroup cols="3">
<thead>
<row>
<entry>Fonction</entry>
Expand Down

0 comments on commit 344daf8

Please sign in to comment.