mirror of
https://github.com/postgres/postgres.git
synced 2026-04-20 22:00:13 -04:00
The isWritable method in ResultSetMetaData returns the logically
incorrect result. This bug goes back to at least 6.3. Alvin
This commit is contained in:
parent
d13fe29000
commit
983fc97672
1 changed files with 2 additions and 2 deletions
|
|
@ -378,9 +378,9 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
|
|||
public boolean isWritable(int column) throws SQLException
|
||||
{
|
||||
if (isReadOnly(column))
|
||||
return true;
|
||||
else
|
||||
return false;
|
||||
else
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in a new issue