projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f27976c
)
Update char_length() example for new semantics.
author
Tom Lane
<tgl@sss.pgh.pa.us>
Sun, 1 Feb 2004 06:55:07 +0000
(06:55 +0000)
committer
Tom Lane
<tgl@sss.pgh.pa.us>
Sun, 1 Feb 2004 06:55:07 +0000
(06:55 +0000)
doc/src/sgml/datatype.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/datatype.sgml
b/doc/src/sgml/datatype.sgml
index bcfe16905883be1edf95c991fc291e28e20f54e1..2689349b8f50166bf6abfd1f25bcade293b4eb58 100644
(file)
--- a/
doc/src/sgml/datatype.sgml
+++ b/
doc/src/sgml/datatype.sgml
@@
-1,5
+1,5
@@
<!--
-$PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.14
1 2004/02/01 06:27:48
tgl Exp $
+$PostgreSQL: pgsql/doc/src/sgml/datatype.sgml,v 1.14
2 2004/02/01 06:55:07
tgl Exp $
-->
<chapter id="datatype">
@@
-958,7
+958,7
@@
SELECT a, char_length(a) FROM test1; -- <co id="co.datatype-char">
<computeroutput>
a | char_length
------+-------------
- ok |
4
+ ok |
2
</computeroutput>
CREATE TABLE test2 (b varchar(5));