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
add optional preQueryCallback callback. If it's defined, this function will be called before each query and awaited if it returns a promise. Could be useful in some cases. For example you want first to check if the server is not in idle state (for example Clickhouse Cloud have idling options) and if it is, you want to wake it up before sending the query. If the function throws an error this error will not be caught and will propagate to the caller. Therefore the query will not be executed.