mirror of
https://github.com/postgres/postgres.git
synced 2025-07-03 20:02:46 +03: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:
@ -378,9 +378,9 @@ public class ResultSetMetaData implements java.sql.ResultSetMetaData
|
|||||||
public boolean isWritable(int column) throws SQLException
|
public boolean isWritable(int column) throws SQLException
|
||||||
{
|
{
|
||||||
if (isReadOnly(column))
|
if (isReadOnly(column))
|
||||||
return true;
|
|
||||||
else
|
|
||||||
return false;
|
return false;
|
||||||
|
else
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Reference in New Issue
Block a user