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 authored and gleu committed Apr 1, 2019
1 parent ed8b31b commit b680826
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 b680826

Please sign in to comment.