Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 391e1f7

Browse files
author
Dave Cramer
committed
fixed compile error
1 parent 7364208 commit 391e1f7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/interfaces/jdbc/org/postgresql/jdbc2/ResultSetMetaData.java

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
import org.postgresql.*;
1212
import org.postgresql.util.*;
1313

14-
/*
14+
/**
1515
* A ResultSetMetaData object can be used to find out about the types and
1616
* properties of the columns in a ResultSet
1717
*
@@ -403,7 +403,7 @@ public String getColumnTypeName(int column) throws SQLException
403403
return getField(column).getPGType();
404404
}
405405

406-
/*
406+
/**
407407
* Is the column definitely not writable? In reality, we would
408408
* have to check the GRANT/REVOKE stuff for this to be effective,
409409
* and I haven't really looked into that yet, so this will get
@@ -418,7 +418,7 @@ public boolean isReadOnly(int column) throws SQLException
418418
return false;
419419
}
420420

421-
/*
421+
/**
422422
* Is it possible for a write on the column to succeed? Again, we
423423
* would in reality have to check the GRANT/REVOKE stuff, which
424424
* I haven't worked with as yet. However, if it isn't ReadOnly, then
@@ -433,7 +433,7 @@ public boolean isWritable(int column) throws SQLException
433433
return !isReadOnly(column);
434434
}
435435

436-
/*
436+
/**
437437
* Will a write on this column definately succeed? Hmmm...this
438438
* is a bad one, since the two preceding functions have not been
439439
* really defined. I cannot tell is the short answer. I thus
@@ -452,7 +452,7 @@ public boolean isDefinitelyWritable(int column) throws SQLException
452452
// END OF PUBLIC INTERFACE
453453
// ********************************************************
454454

455-
/*
455+
/**
456456
* For several routines in this package, we need to convert
457457
* a columnIndex into a Field[] descriptor. Rather than do
458458
* the same code several times, here it is.
@@ -533,6 +533,6 @@ public String getColumnClassName(int column) throws SQLException
533533
default:
534534
throw org.postgresql.Driver.notImplemented();
535535
}
536-
536+
}
537537
}
538538

0 commit comments

Comments
 (0)