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
d7dbba26
Commit
d7dbba26
authored
Jun 06, 2000
by
Peter Mount
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed hardwired 8k limit on queries
parent
552d5935
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
src/interfaces/jdbc/org/postgresql/Connection.java
src/interfaces/jdbc/org/postgresql/Connection.java
+5
-3
No files found.
src/interfaces/jdbc/org/postgresql/Connection.java
View file @
d7dbba26
...
...
@@ -10,7 +10,7 @@ import org.postgresql.largeobject.*;
import
org.postgresql.util.*
;
/**
* $Id: Connection.java,v 1.
1 2000/04/26 05:39:32
peter Exp $
* $Id: Connection.java,v 1.
2 2000/06/06 07:24:06
peter Exp $
*
* This abstract class is used by org.postgresql.Driver to open either the JDBC1 or
* JDBC2 versions of the Connection class.
...
...
@@ -320,8 +320,10 @@ public abstract class Connection
int
update_count
=
1
;
SQLException
final_error
=
null
;
if
(
sql
.
length
()
>
8192
)
throw
new
PSQLException
(
"postgresql.con.toolong"
,
sql
);
// Commented out as the backend can now handle queries
// larger than 8K. Peter June 6 2000
//if (sql.length() > 8192)
//throw new PSQLException("postgresql.con.toolong",sql);
try
{
pg_stream
.
SendChar
(
'Q'
);
...
...
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