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
b32a290b
Commit
b32a290b
authored
Jan 06, 2009
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update SELECT version() to show whether it is a 32 or 64-bit backend binary.
parent
02aa5f19
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
909 additions
and
501 deletions
+909
-501
configure
configure
+901
-495
configure.in
configure.in
+4
-2
doc/src/sgml/start.sgml
doc/src/sgml/start.sgml
+4
-4
No files found.
configure
View file @
b32a290b
This diff is collapsed.
Click to expand it.
configure.in
View file @
b32a290b
dnl Process this file with autoconf to produce a configure script.
dnl $PostgreSQL: pgsql/configure.in,v 1.5
79 2009/01/05 10:25:59 petere
Exp $
dnl $PostgreSQL: pgsql/configure.in,v 1.5
80 2009/01/06 03:05:23 momjian
Exp $
dnl
dnl Developers, please strive to achieve this order:
dnl
...
...
@@ -496,8 +496,10 @@ if test x"$GCC" = x"yes" ; then
else
cc_string=$CC
fi
AC_CHECK_SIZEOF([void *])
AC_DEFINE_UNQUOTED(PG_VERSION_STR,
["PostgreSQL $PACKAGE_VERSION on $host, compiled by $cc_string"],
["PostgreSQL $PACKAGE_VERSION on $host, compiled by $cc_string
, `expr $ac_cv_sizeof_void_p \* 8`-bit
"],
[A string containing the version number, platform, and C compiler])
...
...
doc/src/sgml/start.sgml
View file @
b32a290b
<!-- $PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.4
7 2008/05/16 17:17:00
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/start.sgml,v 1.4
8 2009/01/06 03:05:23
momjian Exp $ -->
<chapter id="tutorial-start">
<title>Getting Started</title>
...
...
@@ -362,9 +362,9 @@ mydb=#
<indexterm><primary>version</primary></indexterm>
<screen>
<prompt>mydb=></prompt> <userinput>SELECT version();</userinput>
version
----------------------------------------------------------------
PostgreSQL &version; on i586-pc-linux-gnu, compiled by GCC 2.96
version
-------
----------------------------------------------------------------
PostgreSQL &version; on i586-pc-linux-gnu, compiled by GCC 2.96
, 32-bit
(1 row)
<prompt>mydb=></prompt> <userinput>SELECT current_date;</userinput>
...
...
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