Skip to content

Commit

Permalink
texte en anglais oublié
Browse files Browse the repository at this point in the history
  • Loading branch information
Krysztophe committed Jan 6, 2017
1 parent 4d9c12e commit 99328ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions postgresql/btree-gin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
qui testent à la fois une colonnne indexable via GIN et une colonne indexable
par B-tree, il peut être plus efficace de créer un index GIN multicolonne
qui utilise une de ces classes d'opérateurs que de créer deux index séparés
qui devront être combinés via une opération de bitmap ET.
qui devront être combinés par une opération de bitmap ET.
</para>

<sect2>
<title>Exemple d'utilisation</title>

<programlisting>
CREATE TABLE test (a int4);
-- create index
-- crée l'index
CREATE INDEX testidx ON test USING GIN (a);
-- requête
SELECT * FROM test WHERE a &lt; 10;
Expand Down

0 comments on commit 99328ea

Please sign in to comment.