Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 9da6508

Browse files
committed
Change \; to ; in RULE, \; unnecessary.
1 parent 79e3710 commit 9da6508

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tutorial/funcs.source

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
--
77
-- Copyright (c) 1994-5, Regents of the University of California
88
--
9-
-- $PostgreSQL: pgsql/src/tutorial/funcs.source,v 1.9 2006/05/11 19:21:14 momjian Exp $
9+
-- $PostgreSQL: pgsql/src/tutorial/funcs.source,v 1.10 2006/05/22 14:08:06 momjian Exp $
1010
--
1111
---------------------------------------------------------------------------
1212

@@ -110,7 +110,7 @@ SELECT name(high_pay()) AS overpaid;
110110
-- SELECT * FROM EMP;
111111
--
112112
-- CREATE FUNCTION clean_EMP () RETURNS integer
113-
-- AS 'DELETE FROM EMP WHERE EMP.salary <= 0\;
113+
-- AS 'DELETE FROM EMP WHERE EMP.salary <= 0;
114114
-- SELECT 1 AS ignore_this'
115115
-- LANGUAGE SQL;
116116
--

0 commit comments

Comments
 (0)