Imports of package gosnowflake

PathSynopsis
C
bufioPackage bufio implements buffered I/O. It wraps an io.Reader or io.Writer object, creating another object (Reader or Writer) that also implements the interface but provides buffering and some help for textual I/O.
bytesPackage bytes implements functions for the manipulation of byte slices.
cmpPackage cmp provides types and functions related to comparing ordered values.
compress/gzipPackage gzip implements reading and writing of gzip format compressed files, as specified in RFC 1952.
contextPackage context defines the Context type, which carries deadlines, cancellation signals, and other request-scoped values across API boundaries and between processes.
cryptoPackage crypto collects common cryptographic constants.
crypto/aesPackage aes implements AES encryption (formerly Rijndael), as defined in U.S. Federal Information Processing Standards Publication 197.
crypto/cipherPackage cipher implements standard block cipher modes that can be wrapped around low-level block cipher implementations.
crypto/randPackage rand implements a cryptographically secure random number generator.
crypto/rsaPackage rsa implements RSA encryption as specified in PKCS #1 and RFC 8017.
crypto/sha256Package sha256 implements the SHA224 and SHA256 hash algorithms as defined in FIPS 180-4.
crypto/tlsPackage tls partially implements TLS 1.2, as specified in RFC 5246, and TLS 1.3, as specified in RFC 8446.
crypto/x509Package x509 implements a subset of the X.509 standard.
crypto/x509/pkixPackage pkix contains shared, low level structures used for ASN.1 parsing and serialization of X.509 certificates, CRL and OCSP.
database/sqlPackage sql provides a generic interface around SQL (or SQL-like) databases.
database/sql/driverPackage driver defines interfaces to be implemented by database drivers as used by package sql.
encoding/asn1Package asn1 implements parsing of DER-encoded ASN.1 data structures, as defined in ITU-T Rec X.690.
encoding/base64Package base64 implements base64 encoding as specified by RFC 4648.
encoding/hexPackage hex implements hexadecimal encoding and decoding.
encoding/jsonPackage json implements encoding and decoding of JSON as defined in RFC 7159.
encoding/pemPackage pem implements the PEM data encoding, which originated in Privacy Enhanced Mail.
errorsPackage errors implements functions to manipulate errors.
fmtPackage fmt implements formatted I/O with functions analogous to C's printf and scanf.
github.com/99designs/keyringPackage keyring provides a uniform API over a range of desktop credential storage engines.
github.com/Azure/azure-sdk-for-go/sdk/azcorePackage azcore implements an HTTP request/response middleware pipeline used by Azure SDK clients.
github.com/Azure/azure-sdk-for-go/sdk/azcore/policyPackage policy contains the definitions needed for configuring in-box pipeline policies and creating custom policies.
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/blob
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/bloberror
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob/container
github.com/BurntSushi/tomlPackage toml implements decoding and encoding of TOML files.
github.com/apache/arrow-go/v18/arrowPackage arrow provides an implementation of Apache Arrow.
github.com/apache/arrow-go/v18/arrow/arrayPackage array provides implementations of various Arrow array types.
github.com/apache/arrow-go/v18/arrow/computePackage compute is a native-go implementation of an Acero-like arrow compute engine.
github.com/apache/arrow-go/v18/arrow/decimal128
github.com/apache/arrow-go/v18/arrow/ipc
github.com/apache/arrow-go/v18/arrow/memoryPackage memory provides support for allocating and manipulating memory at a low level.
github.com/aws/aws-sdk-go-v2/awsPackage aws provides the core SDK's utilities and shared types.
github.com/aws/aws-sdk-go-v2/aws/signer/v4Package v4 implements the AWS signature version 4 algorithm (commonly known as SigV4).
github.com/aws/aws-sdk-go-v2/configPackage config provides utilities for loading configuration from multiple sources that can be used to configure the SDK's API clients, and utilities.
github.com/aws/aws-sdk-go-v2/credentialsPackage credentials provides types for retrieving credentials from credentials sources.
github.com/aws/aws-sdk-go-v2/feature/ec2/imdsPackage imds provides the API client for interacting with the Amazon EC2 Instance Metadata Service.
github.com/aws/aws-sdk-go-v2/feature/s3/managerPackage manager provides utilities to upload and download objects from S3 concurrently.
github.com/aws/aws-sdk-go-v2/service/s3Package s3 provides the API client, operations, and parameter types for Amazon Simple Storage Service.
github.com/aws/aws-sdk-go-v2/service/sts
github.com/aws/smithy-goPackage smithy provides the core components for a Smithy SDK.
github.com/aws/smithy-go/logging
github.com/gabriel-vasile/mimetypePackage mimetype uses magic number signatures to detect the MIME type of a file.
github.com/golang-jwt/jwt/v5Package jwt is a Go implementation of JSON Web Tokens: http://self-issued.info/docs/draft-jones-json-web-token.html
github.com/pkg/browserPackage browser provides helpers to open files, readers, and urls in a browser window.
github.com/sirupsen/logrusPackage logrus is a structured logger for Go, completely API compatible with the standard library logger.
go.opentelemetry.io/otel/propagationPackage propagation contains OpenTelemetry context propagators.
golang.org/x/crypto/ocspPackage ocsp parses OCSP responses as specified in RFC 2560.
golang.org/x/net/http/httpproxyPackage httpproxy provides support for HTTP proxy determination based on environment variables, as provided by net/http.ProxyFromEnvironment function.
golang.org/x/oauth2Package oauth2 provides support for making OAuth2 authorized and authenticated HTTP requests, as specified in RFC 6749.
golang.org/x/oauth2/clientcredentialsPackage clientcredentials implements the OAuth2.0 "client credentials" token flow, also known as "two-legged OAuth 2.0".
golang.org/x/sys/unix
htmlPackage html provides functions for escaping and unescaping HTML text.
ioPackage io provides basic interfaces to I/O primitives.
logPackage log implements a simple logging package.
mathPackage math provides basic constants and mathematical functions.
math/bigPackage big implements arbitrary-precision arithmetic (big numbers).
math/randPackage rand implements pseudo-random number generators suitable for tasks such as simulation, but it should not be used for security-sensitive work.
netPackage net provides a portable interface for network I/O, including TCP/IP, UDP, domain name resolution, and Unix domain sockets.
net/httpPackage http provides HTTP client and server implementations.
net/urlPackage url parses URLs and implements query escaping.
osPackage os provides a platform-independent interface to operating system functionality.
os/userPackage user allows user account lookups by name or id.
pathPackage path implements utility routines for manipulating slash-separated paths.
path/filepathPackage filepath implements utility routines for manipulating filename paths in a way compatible with the target operating system-defined file paths.
reflectPackage reflect implements run-time reflection, allowing a program to manipulate objects with arbitrary types.
regexpPackage regexp implements regular expression search.
runtimePackage runtime contains operations that interact with Go's runtime system, such as functions to control goroutines.
runtime/debugPackage debug contains facilities for programs to debug themselves while they are running.
slicesPackage slices defines various functions useful with slices of any type.
sortPackage sort provides primitives for sorting slices and user-defined collections.
strconvPackage strconv implements conversions to and from string representations of basic data types.
stringsPackage strings implements simple functions to manipulate UTF-8 encoded strings.
syncPackage sync provides basic synchronization primitives such as mutual exclusion locks.
sync/atomicPackage atomic provides low-level atomic memory primitives useful for implementing synchronization algorithms.
syscallPackage syscall contains an interface to the low-level operating system primitives.
timePackage time provides functionality for measuring and displaying time.
unicodePackage unicode provides data and functions to test some properties of Unicode code points.
unicode/utf16Package utf16 implements encoding and decoding of UTF-16 sequences.
unicode/utf8Package utf8 implements functions and constants to support text encoded in UTF-8.
unsafePackage unsafe contains operations that step around the type safety of Go programs.