I've pulled out logs from snowflake directly to see what queries are being fired from the app and noticed that this particular statement is repeatedly being called at fixed interval.
I wanted to understand why the above statement is executed repeatedly when we are not firing the same via our application. Is this the default behaviour from Snowflake JDBC driver?
Here is the JDBC url:
jdbc:snowflake://${sf.customer.datasource.w2.account}.snowflakecomputing.com/?insecureMode=true&\
db=${sf.customer.datasource.w2.database}&warehouse=${sf.customer.datasource.w2.warehouse}&CLIENT_SESSION_KEEP_ALIVE=false&\
schema=${sf.customer.datasource.w2.schema}&role=${sf.customer.datasource.w2.role}&TIMEZONE=${sf.customer.datasource.w2.timezone:UTC}&\
CLIENT_RESULT_COLUMN_CASE_INSENSITIVE=true&CLIENT_TIMESTAMP_TYPE_MAPPING=TIMESTAMP_NTZ
