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
3152ef63
Commit
3152ef63
authored
Feb 11, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Source alignment cleanups.
parent
a952c79b
Changes
22
Show whitespace changes
Inline
Side-by-side
Showing
22 changed files
with
676 additions
and
671 deletions
+676
-671
src/interfaces/odbc/bind.c
src/interfaces/odbc/bind.c
+5
-5
src/interfaces/odbc/columninfo.h
src/interfaces/odbc/columninfo.h
+2
-2
src/interfaces/odbc/connection.c
src/interfaces/odbc/connection.c
+5
-5
src/interfaces/odbc/connection.h
src/interfaces/odbc/connection.h
+18
-18
src/interfaces/odbc/drvconn.c
src/interfaces/odbc/drvconn.c
+1
-1
src/interfaces/odbc/environ.c
src/interfaces/odbc/environ.c
+3
-3
src/interfaces/odbc/execute.c
src/interfaces/odbc/execute.c
+8
-8
src/interfaces/odbc/gpps.h
src/interfaces/odbc/gpps.h
+16
-18
src/interfaces/odbc/info.c
src/interfaces/odbc/info.c
+13
-13
src/interfaces/odbc/iodbc.h
src/interfaces/odbc/iodbc.h
+4
-4
src/interfaces/odbc/isql.h
src/interfaces/odbc/isql.h
+53
-53
src/interfaces/odbc/isqlext.h
src/interfaces/odbc/isqlext.h
+429
-429
src/interfaces/odbc/options.c
src/interfaces/odbc/options.c
+4
-4
src/interfaces/odbc/pgtypes.h
src/interfaces/odbc/pgtypes.h
+24
-24
src/interfaces/odbc/psqlodbc.c
src/interfaces/odbc/psqlodbc.c
+1
-1
src/interfaces/odbc/psqlodbc.h
src/interfaces/odbc/psqlodbc.h
+33
-33
src/interfaces/odbc/results.c
src/interfaces/odbc/results.c
+12
-12
src/interfaces/odbc/socket.h
src/interfaces/odbc/socket.h
+10
-10
src/interfaces/odbc/statement.c
src/interfaces/odbc/statement.c
+2
-2
src/interfaces/odbc/statement.h
src/interfaces/odbc/statement.h
+26
-26
src/tools/pgindent/README
src/tools/pgindent/README
+3
-0
src/tools/pgindent/pgindent
src/tools/pgindent/pgindent
+4
-0
No files found.
src/interfaces/odbc/bind.c
View file @
3152ef63
src/interfaces/odbc/columninfo.h
View file @
3152ef63
src/interfaces/odbc/connection.c
View file @
3152ef63
src/interfaces/odbc/connection.h
View file @
3152ef63
src/interfaces/odbc/drvconn.c
View file @
3152ef63
src/interfaces/odbc/environ.c
View file @
3152ef63
src/interfaces/odbc/execute.c
View file @
3152ef63
src/interfaces/odbc/gpps.h
View file @
3152ef63
...
...
@@ -17,8 +17,7 @@ extern "C"
{
#endif
DWORD
GetPrivateProfileString
(
char
*
theSection
,
/* section name */
DWORD
GetPrivateProfileString
(
char
*
theSection
,
/* section name */
char
*
theKey
,
/* search key name */
char
*
theDefault
,
/* default value if not
* found */
...
...
@@ -29,8 +28,7 @@ extern "C"
char
*
theIniFileName
);
/* pathname of ini file
* to search */
DWORD
WritePrivateProfileString
(
char
*
theSection
,
/* section name */
DWORD
WritePrivateProfileString
(
char
*
theSection
,
/* section name */
char
*
theKey
,
/* write key name */
char
*
theBuffer
,
/* input buffer */
char
*
theIniFileName
);
/* pathname of ini file
...
...
src/interfaces/odbc/info.c
View file @
3152ef63
src/interfaces/odbc/iodbc.h
View file @
3152ef63
src/interfaces/odbc/isql.h
View file @
3152ef63
...
...
@@ -48,7 +48,7 @@ typedef signed short RETCODE;
#define SQL_VARCHAR 12
#define SQL_TYPE_MIN SQL_CHAR
#define SQL_TYPE_NUL
L
0
#define SQL_TYPE_NUL
0
#define SQL_TYPE_MAX SQL_VARCHAR
/* C to SQL datatype mapping */
...
...
src/interfaces/odbc/isqlext.h
View file @
3152ef63
src/interfaces/odbc/options.c
View file @
3152ef63
src/interfaces/odbc/pgtypes.h
View file @
3152ef63
src/interfaces/odbc/psqlodbc.c
View file @
3152ef63
src/interfaces/odbc/psqlodbc.h
View file @
3152ef63
...
...
@@ -6,7 +6,7 @@
*
* Comments: See "notice.txt" for copyright and license information.
*
* $Id: psqlodbc.h,v 1.3
4 2001/02/11 05:13:5
1 momjian Exp $
* $Id: psqlodbc.h,v 1.3
5 2001/02/11 05:58:4
1 momjian Exp $
*/
#ifndef __PSQLODBC_H__
...
...
src/interfaces/odbc/results.c
View file @
3152ef63
src/interfaces/odbc/socket.h
View file @
3152ef63
src/interfaces/odbc/statement.c
View file @
3152ef63
src/interfaces/odbc/statement.h
View file @
3152ef63
...
...
@@ -50,8 +50,8 @@ typedef enum
STMT_EXECUTING
/* statement execution is still going on */
}
STMT_Status
;
#define STMT_TRUNCATED
-2
#define STMT_INFO_ONLY
-1
/* not an error message, just a
#define STMT_TRUNCATED
(-2)
#define STMT_INFO_ONLY
(-1)
/* not an error message, just a
* notification to be returned by SQLError */
#define STMT_OK 0
/* will be interpreted as "no error
* pending" */
...
...
src/tools/pgindent/README
View file @
3152ef63
...
...
@@ -27,3 +27,6 @@ We get the list of typedef's included in pgindent by running:
/src/tools/find_typedef
Make sure to do the pgsql/bin directory, and the src/interfaces/odbc
directory. Merge the output of these and remove duplicates.
src/tools/pgindent/pgindent
View file @
3152ef63
...
...
@@ -37,6 +37,10 @@ do
indent
-bad
-bap
-bc
-bl
-d0
-cdb
-nce
-nfc1
-di12
-i4
-l75
\
-lp
-nip
-npro
$EXTRA_OPTS
\
-TFAR
\
-TDWORD
\
-TBOOL
\
-TRETCODE
\
-TSQL_API
\
-TA_Const
\
-TA_Expr
\
-TA_Indices
\
...
...
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