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
0e38f0a1
Commit
0e38f0a1
authored
Jun 06, 2000
by
Peter Mount
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some missing org.'s that prevented the use of the geometric types
parent
d7dbba26
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
9 deletions
+14
-9
src/interfaces/jdbc/CHANGELOG
src/interfaces/jdbc/CHANGELOG
+5
-0
src/interfaces/jdbc/org/postgresql/Connection.java
src/interfaces/jdbc/org/postgresql/Connection.java
+9
-9
No files found.
src/interfaces/jdbc/CHANGELOG
View file @
0e38f0a1
Tue Jun 06 08:37:00 BST 2000 petermount@it.maidstone.gov.uk
- Removed a hardwired 8K limit on query strings
- Added some missing org.'s in Connection that prevented
the use of the geometric types.
Thu Jun 01 07:26:00 BST 2000 petermount@it.maidstone.gov.uk
Thu Jun 01 07:26:00 BST 2000 petermount@it.maidstone.gov.uk
- Removed timezone in getTimestamp() methods in ResultSet.
- Removed timezone in getTimestamp() methods in ResultSet.
...
...
src/interfaces/jdbc/org/postgresql/Connection.java
View file @
0e38f0a1
...
@@ -10,7 +10,7 @@ import org.postgresql.largeobject.*;
...
@@ -10,7 +10,7 @@ import org.postgresql.largeobject.*;
import
org.postgresql.util.*
;
import
org.postgresql.util.*
;
/**
/**
* $Id: Connection.java,v 1.
2 2000/06/06 07:24:06
peter Exp $
* $Id: Connection.java,v 1.
3 2000/06/06 07:45:07
peter Exp $
*
*
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class.
* JDBC2 versions of the Connection class.
...
@@ -703,14 +703,14 @@ public abstract class Connection
...
@@ -703,14 +703,14 @@ public abstract class Connection
// the full class name of the handling class.
// the full class name of the handling class.
//
//
private
static
final
String
defaultObjectTypes
[][]
=
{
private
static
final
String
defaultObjectTypes
[][]
=
{
{
"box"
,
"postgresql.geometric.PGbox"
},
{
"box"
,
"
org.
postgresql.geometric.PGbox"
},
{
"circle"
,
"postgresql.geometric.PGcircle"
},
{
"circle"
,
"
org.
postgresql.geometric.PGcircle"
},
{
"line"
,
"postgresql.geometric.PGline"
},
{
"line"
,
"
org.
postgresql.geometric.PGline"
},
{
"lseg"
,
"postgresql.geometric.PGlseg"
},
{
"lseg"
,
"
org.
postgresql.geometric.PGlseg"
},
{
"path"
,
"postgresql.geometric.PGpath"
},
{
"path"
,
"
org.
postgresql.geometric.PGpath"
},
{
"point"
,
"postgresql.geometric.PGpoint"
},
{
"point"
,
"
org.
postgresql.geometric.PGpoint"
},
{
"polygon"
,
"postgresql.geometric.PGpolygon"
},
{
"polygon"
,
"
org.
postgresql.geometric.PGpolygon"
},
{
"money"
,
"postgresql.util.PGmoney"
}
{
"money"
,
"
org.
postgresql.util.PGmoney"
}
};
};
// This initialises the objectTypes hashtable
// This initialises the objectTypes hashtable
...
...
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