All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.snowflake.client.jdbc.cloud.storage.QueryIdHelper Maven / Gradle / Ivy

There is a newer version: 3.21.0
Show newest version
/*
 * Copyright (c) 2023 Snowflake Computing Inc. All rights reserved.
 */
package net.snowflake.client.jdbc.cloud.storage;

import net.snowflake.common.core.RemoteStoreFileEncryptionMaterial;

class QueryIdHelper {
  static String queryIdFromEncMatOr(RemoteStoreFileEncryptionMaterial encMat, String queryId) {
    return encMat != null && encMat.getQueryId() != null ? encMat.getQueryId() : queryId;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy