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
a7b5abcb
Commit
a7b5abcb
authored
Sep 10, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
%lld not %Ld
parent
e1f21884
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
src/configure.in
src/configure.in
+3
-3
src/include/utils/int8.h
src/include/utils/int8.h
+3
-3
No files found.
src/configure.in
View file @
a7b5abcb
...
...
@@ -573,10 +573,10 @@ main() {
AC_MSG_RESULT(no),
AC_MSG_RESULT(assuming not on target machine))
AC_MSG_CHECKING(whether 'long long int' is 64 bits using %
L
d)
AC_MSG_CHECKING(whether 'long long int' is 64 bits using %
ll
d)
AC_TRY_RUN([#include <stdio.h>
typedef long long int int64;
#define INT64_FORMAT "%
L
d"
#define INT64_FORMAT "%
ll
d"
int64 a = 20000001;
int64 b = 40000005;
...
...
@@ -606,7 +606,7 @@ int does_int64_work()
main() {
exit(! does_int64_work());
}],
[AC_DEFINE(HAVE_LONG_LONG_INT_64_
L
d) AC_MSG_RESULT(yes)],
[AC_DEFINE(HAVE_LONG_LONG_INT_64_
ll
d) AC_MSG_RESULT(yes)],
AC_MSG_RESULT(no),
AC_MSG_RESULT(assuming not on target machine))
...
...
src/include/utils/int8.h
View file @
a7b5abcb
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: int8.h,v 1.
5 1998/09/10 03:27:09
momjian Exp $
* $Id: int8.h,v 1.
6 1998/09/10 05:36:00
momjian Exp $
*
* NOTES
* These data types are supported on all 64-bit architectures, and may
...
...
@@ -29,11 +29,11 @@ typedef long int int64;
#define INT64_FORMAT "%ld"
#else
#ifdef HAVE_LONG_LONG_INT_64_
L
d
#ifdef HAVE_LONG_LONG_INT_64_
ll
d
/* We have working support for "long long int", use that */
typedef
long
long
int
int64
;
#define INT64_FORMAT "%
L
d"
#define INT64_FORMAT "%
ll
d"
#else
#ifdef HAVE_LONG_LONG_INT_64_qd
/* We have working support for "long long int", use that */
...
...
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