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
28e92b89
Commit
28e92b89
authored
Nov 19, 2001
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Change 'return ;' to 'return;'; remove space.
parent
0dfe9138
Changes
14
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
34 additions
and
34 deletions
+34
-34
src/interfaces/jdbc/example/Unicode.java
src/interfaces/jdbc/example/Unicode.java
+1
-1
src/interfaces/jdbc/example/corba/StockClient.java
src/interfaces/jdbc/example/corba/StockClient.java
+4
-4
src/interfaces/jdbc/example/corba/StockDispenserImpl.java
src/interfaces/jdbc/example/corba/StockDispenserImpl.java
+3
-3
src/interfaces/jdbc/example/corba/StockServer.java
src/interfaces/jdbc/example/corba/StockServer.java
+3
-3
src/interfaces/jdbc/example/psql.java
src/interfaces/jdbc/example/psql.java
+1
-1
src/interfaces/jdbc/org/postgresql/Connection.java
src/interfaces/jdbc/org/postgresql/Connection.java
+4
-4
src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java
src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java
+1
-1
src/interfaces/jdbc/org/postgresql/core/BytePoolDim2.java
src/interfaces/jdbc/org/postgresql/core/BytePoolDim2.java
+1
-1
src/interfaces/jdbc/org/postgresql/core/SimpleObjectPool.java
...interfaces/jdbc/org/postgresql/core/SimpleObjectPool.java
+1
-1
src/interfaces/jdbc/org/postgresql/jdbc1/PreparedStatement.java
...terfaces/jdbc/org/postgresql/jdbc1/PreparedStatement.java
+2
-2
src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
...terfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
+2
-2
src/interfaces/jdbc/org/postgresql/util/Serialize.java
src/interfaces/jdbc/org/postgresql/util/Serialize.java
+1
-1
src/interfaces/jdbc/org/postgresql/xa/ClientConnection.java
src/interfaces/jdbc/org/postgresql/xa/ClientConnection.java
+2
-2
src/interfaces/jdbc/org/postgresql/xa/XAConnectionImpl.java
src/interfaces/jdbc/org/postgresql/xa/XAConnectionImpl.java
+8
-8
No files found.
src/interfaces/jdbc/example/Unicode.java
View file @
28e92b89
...
...
@@ -234,7 +234,7 @@ public class Unicode
catch
(
ClassNotFoundException
cnfe
)
{
log
(
"Unable to load driver"
,
cnfe
);
return
;
return
;
}
try
{
...
...
src/interfaces/jdbc/example/corba/StockClient.java
View file @
28e92b89
...
...
@@ -9,7 +9,7 @@ import org.omg.CosNaming.*;
*
* It has no GUI, just a text frontend to keep it simple.
*
* $Id: StockClient.java,v 1.
4 2001/11/19 23:16:45
momjian Exp $
* $Id: StockClient.java,v 1.
5 2001/11/19 23:19:20
momjian Exp $
*/
public
class
StockClient
{
...
...
@@ -35,14 +35,14 @@ public class StockClient
if
(
nameServiceObj
==
null
)
{
System
.
err
.
println
(
"nameServiceObj == null"
);
return
;
return
;
}
nameService
=
org
.
omg
.
CosNaming
.
NamingContextHelper
.
narrow
(
nameServiceObj
);
if
(
nameService
==
null
)
{
System
.
err
.
println
(
"nameService == null"
);
return
;
return
;
}
// Resolve the dispenser
...
...
@@ -53,7 +53,7 @@ public class StockClient
if
(
dispenser
==
null
)
{
System
.
err
.
println
(
"dispenser == null"
);
return
;
return
;
}
// Now run the front end.
...
...
src/interfaces/jdbc/example/corba/StockDispenserImpl.java
View file @
28e92b89
...
...
@@ -5,7 +5,7 @@ import org.omg.CosNaming.*;
/*
* This class implements the server side of the example.
*
* $Id: StockDispenserImpl.java,v 1.
3 2001/11/19 22:43:13
momjian Exp $
* $Id: StockDispenserImpl.java,v 1.
4 2001/11/19 23:19:20
momjian Exp $
*/
public
class
StockDispenserImpl
extends
stock
.
_StockDispenserImplBase
{
...
...
@@ -67,11 +67,11 @@ public class StockDispenserImpl extends stock._StockDispenserImplBase
{
stock
[
i
].
inUse
=
false
;
System
.
out
.
println
(
"Releasing slot "
+
i
);
return
;
return
;
}
}
System
.
out
.
println
(
"Reserved object not a member of this dispenser"
);
return
;
return
;
}
/*
...
...
src/interfaces/jdbc/example/corba/StockServer.java
View file @
28e92b89
...
...
@@ -5,7 +5,7 @@ import org.omg.CosNaming.*;
/*
* This class implements the server side of the example.
*
* $Id: StockServer.java,v 1.
3 2001/11/19 22:43:13
momjian Exp $
* $Id: StockServer.java,v 1.
4 2001/11/19 23:19:20
momjian Exp $
*/
public
class
StockServer
{
...
...
@@ -29,14 +29,14 @@ public class StockServer
if
(
nameServiceObj
==
null
)
{
System
.
err
.
println
(
"nameServiceObj = null"
);
return
;
return
;
}
org
.
omg
.
CosNaming
.
NamingContext
nameService
=
org
.
omg
.
CosNaming
.
NamingContextHelper
.
narrow
(
nameServiceObj
);
if
(
nameService
==
null
)
{
System
.
err
.
println
(
"nameService = null"
);
return
;
return
;
}
// bind the dispenser into the naming service
...
...
src/interfaces/jdbc/example/psql.java
View file @
28e92b89
...
...
@@ -82,7 +82,7 @@ public class psql
if
(
line
.
startsWith
(
"\\"
))
{
processSlashCommand
(
line
);
return
;
return
;
}
boolean
type
=
st
.
execute
(
line
);
...
...
src/interfaces/jdbc/org/postgresql/Connection.java
View file @
28e92b89
...
...
@@ -11,7 +11,7 @@ import org.postgresql.util.*;
import
org.postgresql.core.*
;
/*
* $Id: Connection.java,v 1.3
7 2001/11/19 23:16:45
momjian Exp $
* $Id: Connection.java,v 1.3
8 2001/11/19 23:19:20
momjian Exp $
*
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class.
...
...
@@ -817,7 +817,7 @@ public abstract class Connection
public
void
setAutoCommit
(
boolean
autoCommit
)
throws
SQLException
{
if
(
this
.
autoCommit
==
autoCommit
)
return
;
return
;
if
(
autoCommit
)
ExecSQL
(
"end"
);
else
...
...
@@ -860,7 +860,7 @@ public abstract class Connection
public
void
commit
()
throws
SQLException
{
if
(
autoCommit
)
return
;
return
;
if
(
haveMinimumServerVersion
(
"7.1"
))
{
ExecSQL
(
"commit;begin;"
+
getIsolationLevelSQL
());
...
...
@@ -884,7 +884,7 @@ public abstract class Connection
public
void
rollback
()
throws
SQLException
{
if
(
autoCommit
)
return
;
return
;
if
(
haveMinimumServerVersion
(
"7.1"
))
{
ExecSQL
(
"rollback; begin;"
+
getIsolationLevelSQL
());
...
...
src/interfaces/jdbc/org/postgresql/core/BytePoolDim1.java
View file @
28e92b89
...
...
@@ -76,7 +76,7 @@ public class BytePoolDim1
{
// If it's larger than maxsize then we don't touch it
if
(
b
.
length
>
maxsize
)
return
;
return
;
ObjectPool
not_usel
=
notusemap
[
b
.
length
];
ObjectPool
in_usel
=
inusemap
[
b
.
length
];
...
...
src/interfaces/jdbc/org/postgresql/core/BytePoolDim2.java
View file @
28e92b89
...
...
@@ -42,7 +42,7 @@ public class BytePoolDim2
{
if
(
b
.
length
>
maxsize
)
{
return
;
return
;
}
ObjectPool
not_usel
=
notusemap
[
b
.
length
];
ObjectPool
in_usel
=
inusemap
[
b
.
length
];
...
...
src/interfaces/jdbc/org/postgresql/core/SimpleObjectPool.java
View file @
28e92b89
...
...
@@ -83,7 +83,7 @@ public class SimpleObjectPool implements ObjectPool
int
srcsize
=
pool
.
size
();
if
(
srcsize
==
0
)
return
;
return
;
int
totalsize
=
srcsize
+
cursize
;
if
(
totalsize
>
maxsize
)
{
...
...
src/interfaces/jdbc/org/postgresql/jdbc1/PreparedStatement.java
View file @
28e92b89
...
...
@@ -613,7 +613,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
if
(
x
==
null
)
{
setNull
(
parameterIndex
,
Types
.
OTHER
);
return
;
return
;
}
switch
(
targetSqlType
)
{
...
...
@@ -683,7 +683,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
if
(
x
==
null
)
{
setNull
(
parameterIndex
,
Types
.
OTHER
);
return
;
return
;
}
if
(
x
instanceof
String
)
setString
(
parameterIndex
,
(
String
)
x
);
...
...
src/interfaces/jdbc/org/postgresql/jdbc2/PreparedStatement.java
View file @
28e92b89
...
...
@@ -648,7 +648,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
if
(
x
==
null
)
{
setNull
(
parameterIndex
,
Types
.
OTHER
);
return
;
return
;
}
switch
(
targetSqlType
)
{
...
...
@@ -718,7 +718,7 @@ public class PreparedStatement extends Statement implements java.sql.PreparedSta
if
(
x
==
null
)
{
setNull
(
parameterIndex
,
Types
.
OTHER
);
return
;
return
;
}
if
(
x
instanceof
String
)
setString
(
parameterIndex
,
(
String
)
x
);
...
...
src/interfaces/jdbc/org/postgresql/util/Serialize.java
View file @
28e92b89
...
...
@@ -485,7 +485,7 @@ public class Serialize
{
DriverManager
.
println
(
"Serialize.create: table "
+
tableName
+
" exists, skipping"
);
rs
.
close
();
return
;
return
;
}
// else table not found, so create it
...
...
src/interfaces/jdbc/org/postgresql/xa/ClientConnection.java
View file @
28e92b89
...
...
@@ -40,7 +40,7 @@
*
* Copyright 1999 (C) Exoffice Technologies Inc. All Rights Reserved.
*
* $Id: ClientConnection.java,v 1.
3 2001/11/19 22:33:39
momjian Exp $
* $Id: ClientConnection.java,v 1.
4 2001/11/19 23:19:21
momjian Exp $
*/
...
...
@@ -464,7 +464,7 @@ final class ClientConnection
throws
SQLException
{
if
(
_xaConn
==
null
)
return
;
return
;
// Notify the XA connection that we are no longer going
// to be used. Whether the underlying connection is released,
...
...
src/interfaces/jdbc/org/postgresql/xa/XAConnectionImpl.java
View file @
28e92b89
...
...
@@ -40,7 +40,7 @@
*
* Copyright 1999 (C) Exoffice Technologies Inc. All Rights Reserved.
*
* $Id: XAConnectionImpl.java,v 1.
3 2001/11/19 22:33:39
momjian Exp $
* $Id: XAConnectionImpl.java,v 1.
4 2001/11/19 23:19:21
momjian Exp $
*/
...
...
@@ -310,7 +310,7 @@ public final class XAConnectionImpl
// We have to expect being called by a ClientConnection that we
// no longer regard as valid. That's acceptable, we just ignore.
if
(
clientId
!=
_clientId
)
return
;
return
;
// If we are handling an underlying connection, we commit the
// old transaction and are ready to work for a new one.
...
...
@@ -329,7 +329,7 @@ public final class XAConnectionImpl
event
=
new
ConnectionEvent
(
this
,
except
);
_listener
.
connectionErrorOccurred
(
event
);
}
return
;
return
;
}
}
// Notify the listener.
...
...
@@ -355,7 +355,7 @@ public final class XAConnectionImpl
ConnectionEvent
event
;
if
(
clientId
!=
_clientId
)
return
;
return
;
// If the connection is not two-phase commit we cannot determine
// whether the error is critical, we just return. If the connection
...
...
@@ -364,11 +364,11 @@ public final class XAConnectionImpl
{
if
(
!
(
_underlying
instanceof
TwoPhaseConnection
)
||
!
(
(
TwoPhaseConnection
)
_underlying
).
isCriticalError
(
except
)
)
return
;
return
;
if
(
_txConn
.
conn
==
null
||
!
(
_txConn
.
conn
instanceof
TwoPhaseConnection
)
||
!
(
(
TwoPhaseConnection
)
_txConn
.
conn
).
isCriticalError
(
except
)
)
return
;
return
;
}
// The client connection is no longer useable, the underlying
...
...
@@ -766,7 +766,7 @@ public final class XAConnectionImpl
// If connection has been prepared and is read-only,
// nothing to do at this stage.
if
(
txConn
.
readOnly
)
return
;
return
;
// This must be a one-phase commite, or the connection
// should have been prepared before.
...
...
@@ -829,7 +829,7 @@ public final class XAConnectionImpl
// been terminated any other way, nothing to do
// either.
if
(
txConn
.
readOnly
||
txConn
.
conn
==
null
)
return
;
return
;
try
{
...
...
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