diff --git a/src/main/java/net/snowflake/client/core/SFBaseSession.java b/src/main/java/net/snowflake/client/core/SFBaseSession.java index 5daf90880..8e52d9fac 100644 --- a/src/main/java/net/snowflake/client/core/SFBaseSession.java +++ b/src/main/java/net/snowflake/client/core/SFBaseSession.java @@ -290,8 +290,11 @@ public void setDatabaseMinorVersion(int databaseMinorVersion) { } /** - * Get if prepared statement logging is enabled + * Gets the value of CLIENT_ENABLE_LOG_INFO_STATEMENT_PARAMETERS if one has been set. False by + * default. * + * @see CLIENT_ENABLE_LOG_INFO_STATEMENT_PARAMETERS * @return true if enabled */ public boolean getPreparedStatementLogging() { @@ -301,6 +304,7 @@ public boolean getPreparedStatementLogging() { /** * Set prepared statement logging * + * @see SFBaseSession#getPreparedStatementLogging() * @param value boolean */ public void setPreparedStatementLogging(boolean value) { @@ -328,6 +332,8 @@ public void setInjectFileUploadFailure(String fileToFail) { /** * Get timestamp mapped type * + * @see CLIENT_TIMESTAMP_TYPE_MAPPING * @return SnowflakeType {@link SnowflakeType} */ public SnowflakeType getTimestampMappedType() { @@ -337,6 +343,7 @@ public SnowflakeType getTimestampMappedType() { /** * Set the timestamp mapped type * + * @see SFBaseSession#getTimestampMappedType() * @param timestampMappedType SnowflakeType */ public void setTimestampMappedType(SnowflakeType timestampMappedType) { @@ -346,6 +353,7 @@ public void setTimestampMappedType(SnowflakeType timestampMappedType) { /** * Get if result column is case-insensitive * + * @see SFBaseSession#setResultColumnCaseInsensitive(boolean) * @return true if result column is case-insensitive */ public boolean isResultColumnCaseInsensitive() { @@ -355,6 +363,8 @@ public boolean isResultColumnCaseInsensitive() { /** * Set if result column is case-insensitive * + * @see CLIENT_RESULT_COLUMN_CASE_INSENSITIVE * @param resultColumnCaseInsensitive boolean */ public void setResultColumnCaseInsensitive(boolean resultColumnCaseInsensitive) { @@ -364,6 +374,8 @@ public void setResultColumnCaseInsensitive(boolean resultColumnCaseInsensitive) /** * Check if we want to treat decimal as int JDBC types * + * @see JDBC_TREAT_DECIMAL_AS_INT * @return true if decimal is treated as int */ public boolean isJdbcTreatDecimalAsInt() { @@ -373,6 +385,7 @@ public boolean isJdbcTreatDecimalAsInt() { /** * Set if decimal should be treated as int type * + * @see SFBaseSession#isJdbcTreatDecimalAsInt() * @param jdbcTreatDecimalAsInt boolean */ public void setJdbcTreatDecimalAsInt(boolean jdbcTreatDecimalAsInt) {