comparison src/main/java/org/monetdb/jdbc/MonetResultSetMetaData.java @ 943:ff075ed5ce81

Spell check.
author Sjoerd Mullender <sjoerd@acm.org>
date Thu, 09 Jan 2025 10:56:14 +0100 (3 months ago)
parents d416e9b6b3d0
children 32f246853ec4
comparison
equal deleted inserted replaced
942:45c26b1a0677 943:ff075ed5ce81
366 * @return true if so; false otherwise 366 * @return true if so; false otherwise
367 * @throws SQLException if there is no such column 367 * @throws SQLException if there is no such column
368 */ 368 */
369 @Override 369 @Override
370 public boolean isSigned(final int column) throws SQLException { 370 public boolean isSigned(final int column) throws SQLException {
371 // we can hardcode this, based on the colum type 371 // we can hardcode this, based on the column type
372 switch (getColumnType(column)) { 372 switch (getColumnType(column)) {
373 case Types.TINYINT: 373 case Types.TINYINT:
374 case Types.SMALLINT: 374 case Types.SMALLINT:
375 case Types.INTEGER: 375 case Types.INTEGER:
376 case Types.REAL: 376 case Types.REAL: