You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"SELECT TOP 1 VALUE,MAP(LAYER_NAME,'DEFAULT',1,'SYSTEM',2,'DATABASE',3,4) AS LAYER FROM SYS.M_INIFILE_CONTENTS WHERE FILE_NAME='indexserver.ini' AND SECTION='session' AND KEY='max_lob_prefetch_size' ORDER BY LAYER DESC" ) ) {
55
-
// This only works if the current user has the privilege INIFILE ADMIN
"SELECT TOP 1 VALUE,MAP(LAYER_NAME,'DEFAULT',1,'SYSTEM',2,'DATABASE',3,4) AS LAYER FROM SYS.M_CONFIGURATION_PARAMETER_VALUES WHERE FILE_NAME='indexserver.ini' AND SECTION='session' AND KEY='max_lob_prefetch_size' ORDER BY LAYER DESC" ) ) {
67
+
// This only works if the current user has the privilege INIFILE ADMIN
68
+
if ( rs.next() ) {
69
+
maxLobPrefetchSize = rs.getInt( 1 );
70
+
}
71
+
}
72
+
}
73
+
catch (SQLExceptione) {
74
+
// Ignore
75
+
LOG.debug(
76
+
"An error occurred while trying to determine the value of the HANA parameter indexserver.ini / session / max_lob_prefetch_size.",
77
+
e );
78
+
}
79
+
}
67
80
}
68
81
// default to the dialect-specific configuration settings
0 commit comments