diff options
author | Dave Cramer <davec@fastcrypt.com> | 2002-02-26 02:15:55 +0000 |
---|---|---|
committer | Dave Cramer <davec@fastcrypt.com> | 2002-02-26 02:15:55 +0000 |
commit | 7776319a7e8ef2418c75a1a35bb14f7b746ed484 (patch) | |
tree | f7d87d6c74b2664c072c345294833816ca6e3567 /src/interfaces/jdbc/org/postgresql/Statement.java | |
parent | 29e3ef0fe96ecf24e88f72465c6d9e13600eea9d (diff) | |
download | postgresql-7776319a7e8ef2418c75a1a35bb14f7b746ed484.tar.gz |
Implementation for cancelQuery by Grant Finnemore <grantf@guruhut.co.za>
Diffstat (limited to 'src/interfaces/jdbc/org/postgresql/Statement.java')
-rw-r--r-- | src/interfaces/jdbc/org/postgresql/Statement.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/jdbc/org/postgresql/Statement.java b/src/interfaces/jdbc/org/postgresql/Statement.java index 932b93aec8..dbd061bfd3 100644 --- a/src/interfaces/jdbc/org/postgresql/Statement.java +++ b/src/interfaces/jdbc/org/postgresql/Statement.java @@ -179,7 +179,7 @@ public abstract class Statement */ public void cancel() throws SQLException { - // FIXME: Cancel feature has been available since 6.4. Implement it here! + throw new PSQLException("postgresql.unimplemented"); } /* |