Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
24507acc
Commit
24507acc
authored
Sep 07, 2002
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changes to documentation and the regression tests for the default
NAMEDATALEN of 64. Kris Jurka
parent
86e8a43f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
doc/FAQ_DEV
doc/FAQ_DEV
+1
-1
doc/src/FAQ/FAQ_DEV.html
doc/src/FAQ/FAQ_DEV.html
+1
-1
src/test/regress/expected/name.out
src/test/regress/expected/name.out
+1
-1
src/test/regress/sql/name.sql
src/test/regress/sql/name.sql
+1
-1
No files found.
doc/FAQ_DEV
View file @
24507acc
...
@@ -560,7 +560,7 @@
...
@@ -560,7 +560,7 @@
Table, column, type, function, and view names are stored in system
Table, column, type, function, and view names are stored in system
tables in columns of type Name. Name is a fixed-length,
tables in columns of type Name. Name is a fixed-length,
null-terminated type of NAMEDATALEN bytes. (The default value for
null-terminated type of NAMEDATALEN bytes. (The default value for
NAMEDATALEN is
32
bytes.)
NAMEDATALEN is
64
bytes.)
typedef struct nameData
typedef struct nameData
{
{
char data[NAMEDATALEN];
char data[NAMEDATALEN];
...
...
doc/src/FAQ/FAQ_DEV.html
View file @
24507acc
...
@@ -671,7 +671,7 @@
...
@@ -671,7 +671,7 @@
<P>
Table, column, type, function, and view names are stored in
<P>
Table, column, type, function, and view names are stored in
system tables in columns of type
<I>
Name.
</I>
Name is a
system tables in columns of type
<I>
Name.
</I>
Name is a
fixed-length, null-terminated type of
<I>
NAMEDATALEN
</I>
bytes.
fixed-length, null-terminated type of
<I>
NAMEDATALEN
</I>
bytes.
(The default value for NAMEDATALEN is
32
bytes.)
</P>
(The default value for NAMEDATALEN is
64
bytes.)
</P>
<PRE>
<PRE>
<CODE>
typedef struct nameData
<CODE>
typedef struct nameData
{
{
...
...
src/test/regress/expected/name.out
View file @
24507acc
--
--
-- NAME
-- NAME
-- all inputs are silently truncated at NAMEDATALEN-1 (63) characters
--
--
-- fixed-length by reference
-- fixed-length by reference
SELECT name 'name string' = name 'name string' AS "True";
SELECT name 'name string' = name 'name string' AS "True";
...
...
src/test/regress/sql/name.sql
View file @
24507acc
--
--
-- NAME
-- NAME
-- all inputs are silently truncated at NAMEDATALEN-1 (63) characters
--
--
-- fixed-length by reference
-- fixed-length by reference
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment