Skip to content

Commit

Permalink
Correction d'une typo dans "7.2.1.4. Fonctions de table"
Browse files Browse the repository at this point in the history
Dans l'exemple, la table s'appelle "truc" pas "foo" (comme en anglais).
  • Loading branch information
dlax committed Mar 31, 2019
1 parent eb40c6c commit 28553cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion postgresql/queries.xml
Original file line number Diff line number Diff line change
Expand Up @@ -755,7 +755,7 @@ UNNEST( <replaceable>expression_tableau</replaceable> <optional>, ... </optional
Quelques exemples&nbsp;:
<programlisting>CREATE TABLE truc (trucid int, trucsousid int, trucnom text);

CREATE FUNCTION recuptruc(int) RETURNS SETOF foo AS $$
CREATE FUNCTION recuptruc(int) RETURNS SETOF truc AS $$
SELECT * FROM truc WHERE trucid = $1;
$$ LANGUAGE SQL;

Expand Down

0 comments on commit 28553cd

Please sign in to comment.