Skip to content

Commit

Permalink
fix URL for versioning policy
Browse files Browse the repository at this point in the history
  • Loading branch information
asmyasnikov committed Apr 8, 2024
1 parent 961b160 commit ac576fa
Show file tree
Hide file tree
Showing 40 changed files with 327 additions and 327 deletions.
2 changes: 1 addition & 1 deletion balancers/balancers.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"github.com/ydb-platform/ydb-go-sdk/v3/internal/xstring"
)

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func RoundRobin() *balancerConfig.Config {
return &balancerConfig.Config{}
}
Expand Down
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ type Option func(c *Config)

// WithInternalDNSResolver
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithInternalDNSResolver() Option {
return func(c *Config) {}
}
Expand Down Expand Up @@ -170,7 +170,7 @@ func WithApplicationName(applicationName string) Option {

// WithUserAgent add provided user agent to all api requests
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithUserAgent(userAgent string) Option {
return func(c *Config) {
c.metaOptions = append(c.metaOptions, meta.WithApplicationNameOption(userAgent))
Expand Down
4 changes: 2 additions & 2 deletions connection.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
// Connection interface provide access to YDB service clients
// Interface and list of clients may be changed in the future
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
type Connection interface { //nolint:interfacebloat
// Endpoint returns initial endpoint
Endpoint() string
Expand All @@ -35,7 +35,7 @@ type Connection interface { //nolint:interfacebloat

// Query returns query client
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
Query() query.Client

// Scheme returns scheme client
Expand Down
2 changes: 1 addition & 1 deletion coordination/coordination.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ type Client interface {
// - close the Client which the session was created with,
// - call any method of the Session until the ErrSessionClosed is returned.
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
Session(ctx context.Context, path string, opts ...options.SessionOption) (Session, error)
}

Expand Down
4 changes: 2 additions & 2 deletions driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func (d *Driver) Table() table.Client {

// Query returns query client
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
func (d *Driver) Query() query.Client {
return d.query.Get()
}
Expand Down Expand Up @@ -273,7 +273,7 @@ func MustOpen(ctx context.Context, dsn string, opts ...Option) *Driver {

// New connects to database and return driver runtime holder
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func New(ctx context.Context, opts ...Option) (_ *Driver, err error) { //nolint:nonamedreturns
d, err := newConnectionFromOptions(ctx, opts...)
if err != nil {
Expand Down
18 changes: 9 additions & 9 deletions internal/table/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ const (
DefaultSessionPoolSizeLimit = 50
DefaultSessionPoolIdleThreshold = 5 * time.Minute

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
DefaultKeepAliveMinSize = 10

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
DefaultIdleKeepAliveThreshold = 2

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
DefaultSessionPoolKeepAliveTimeout = 500 * time.Millisecond
)

Expand Down Expand Up @@ -61,7 +61,7 @@ func WithSizeLimit(sizeLimit int) Option {
// If keepAliveMinSize is less than zero, then no sessions will be preserved
// If keepAliveMinSize is zero, the DefaultKeepAliveMinSize is used
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithKeepAliveMinSize(keepAliveMinSize int) Option {
return func(c *Config) {}
}
Expand All @@ -73,7 +73,7 @@ func WithKeepAliveMinSize(keepAliveMinSize int) Option {
// be removed ever.
// If IdleKeepAliveThreshold is equal to zero, it will be set to DefaultIdleKeepAliveThreshold
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithIdleKeepAliveThreshold(idleKeepAliveThreshold int) Option {
return func(c *Config) {}
}
Expand All @@ -95,7 +95,7 @@ func WithIdleThreshold(idleThreshold time.Duration) Option {
// WithKeepAliveTimeout limits maximum time spent on KeepAlive request
// If keepAliveTimeout is less than or equal to zero then the DefaultSessionPoolKeepAliveTimeout is used.
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithKeepAliveTimeout(keepAliveTimeout time.Duration) Option {
return func(c *Config) {}
}
Expand Down Expand Up @@ -182,7 +182,7 @@ func (c *Config) SizeLimit() int {
// If KeepAliveMinSize is less than zero, then no sessions will be preserved
// If KeepAliveMinSize is zero, the DefaultKeepAliveMinSize is used
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func (c *Config) KeepAliveMinSize() int {
return DefaultKeepAliveMinSize
}
Expand All @@ -199,7 +199,7 @@ func (c *Config) IgnoreTruncated() bool {
// be removed ever.
// If IdleKeepAliveThreshold is equal to zero, it will be set to DefaultIdleKeepAliveThreshold
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func (c *Config) IdleKeepAliveThreshold() int {
return DefaultIdleKeepAliveThreshold
}
Expand All @@ -216,7 +216,7 @@ func (c *Config) IdleThreshold() time.Duration {
// KeepAliveTimeout limits maximum time spent on KeepAlive request
// If KeepAliveTimeout is less than or equal to zero then the DefaultSessionPoolKeepAliveTimeout is used.
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func (c *Config) KeepAliveTimeout() time.Duration {
return DefaultSessionPoolKeepAliveTimeout
}
Expand Down
2 changes: 1 addition & 1 deletion internal/topic/topicreaderinternal/commit_range.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ func (r *CommitRanges) toRawPartitionCommitOffset() []rawtopicreader.PartitionCo

// PublicCommitRange contains data for commit messages range
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
type PublicCommitRange struct {
priv commitRange
}
Expand Down
2 changes: 1 addition & 1 deletion internal/topic/topicwriterinternal/writer_options.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func WithTokenUpdateInterval(interval time.Duration) PublicWriterOption {

// WithCommonConfig
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
func WithCommonConfig(common config.Common) PublicWriterOption {
return func(cfg *WriterReconnectorConfig) {
cfg.Common = common
Expand Down
4 changes: 2 additions & 2 deletions meta.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ import (

// WithTraceID returns a copy of parent context with traceID
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithTraceID(ctx context.Context, traceID string) context.Context {
return meta.WithTraceID(ctx, traceID)
}

// WithRequestType returns a copy of parent context with custom request type
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithRequestType(ctx context.Context, requestType string) context.Context {
return meta.WithRequestType(ctx, requestType)
}
2 changes: 1 addition & 1 deletion meta/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ func WithTraceID(ctx context.Context, traceID string) context.Context {

// WithUserAgent returns a copy of parent context with custom user-agent info
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithUserAgent(ctx context.Context, _ string) context.Context {
return ctx
}
Expand Down
2 changes: 1 addition & 1 deletion metrics/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/ydb-platform/ydb-go-sdk/v3/trace"

// Config is interface for metrics registry config
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
type Config interface {
Registry

Expand Down
2 changes: 1 addition & 1 deletion metrics/registry.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package metrics

// Registry is interface for metrics registry
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
type Registry interface {
// CounterVec returns CounterVec by name, subsystem and labels
// If counter by args already created - return counter from cache
Expand Down
6 changes: 3 additions & 3 deletions options.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func WithApplicationName(applicationName string) Option {

// WithUserAgent add provided user agent value to all api requests
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithUserAgent(userAgent string) Option {
return func(ctx context.Context, c *Driver) error {
c.options = append(c.options, config.WithApplicationName(userAgent))
Expand Down Expand Up @@ -434,14 +434,14 @@ func WithSessionPoolDeleteTimeout(deleteTimeout time.Duration) Option {

// WithSessionPoolKeepAliveMinSize set minimum sessions should be keeped alive in table.Client
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithSessionPoolKeepAliveMinSize(keepAliveMinSize int) Option {
return func(ctx context.Context, c *Driver) error { return nil }
}

// WithSessionPoolKeepAliveTimeout set timeout of keep alive requests for session in table.Client
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithSessionPoolKeepAliveTimeout(keepAliveTimeout time.Duration) Option {
return func(ctx context.Context, c *Driver) error { return nil }
}
Expand Down
2 changes: 1 addition & 1 deletion params_builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import "github.com/ydb-platform/ydb-go-sdk/v3/internal/params"

// ParamsBuilder used for create query arguments instead of tons options.
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
func ParamsBuilder() params.Builder {
return params.Builder{}
}
6 changes: 3 additions & 3 deletions retry/context.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ type (

// WithIdempotentOperation returns a copy of parent context with idempotent operation feature
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithIdempotentOperation(ctx context.Context) context.Context {
return context.WithValue(ctx, ctxIsOperationIdempotentKey{}, true)
}

// WithNonIdempotentOperation returns a copy of parent context with non-idempotent operation feature
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithNonIdempotentOperation(ctx context.Context) context.Context {
return context.WithValue(ctx, ctxIsOperationIdempotentKey{}, false)
}

// IsOperationIdempotent returns the flag for retry with no idempotent errors
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func IsOperationIdempotent(ctx context.Context) bool {
v, ok := ctx.Value(ctxIsOperationIdempotentKey{}).(bool)

Expand Down
4 changes: 2 additions & 2 deletions retry/sql.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (retryOptions doRetryOptionsOption) ApplyDoOption(opts *doOptions) {
}

// WithDoRetryOptions specified retry options
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithDoRetryOptions(opts ...Option) doRetryOptionsOption {
return opts
}
Expand Down Expand Up @@ -102,7 +102,7 @@ func (doTxRetryOptions doTxRetryOptionsOption) ApplyDoTxOption(o *doTxOptions) {
}

// WithDoTxRetryOptions specified retry options
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithDoTxRetryOptions(opts ...Option) doTxRetryOptionsOption {
return opts
}
Expand Down
4 changes: 2 additions & 2 deletions sugar/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type constraint interface {

// GenerateDeclareSection generates DECLARE section text in YQL query by params
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func GenerateDeclareSection[T constraint](parameters T) (string, error) {
switch v := any(parameters).(type) {
case *params.Parameters:
Expand All @@ -36,7 +36,7 @@ func GenerateDeclareSection[T constraint](parameters T) (string, error) {

// ToYdbParam converts
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func ToYdbParam(param sql.NamedArg) (*params.Parameter, error) {
params, err := bind.Params(param)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion sugar/result.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ func (r *result) Close() error {

// Result converts query.Result to iterable result for compatibility with table/result.Result usage
//
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#experimental
// Experimental: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#experimental
func Result(r query.Result) *result {
return &result{
r: r,
Expand Down
2 changes: 1 addition & 1 deletion table/options/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ func (kr KeyRange) String() string {
return buf.String()
}

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
type TTLSettings struct {
DateTimeColumn string
TTLSeconds uint32
Expand Down
8 changes: 4 additions & 4 deletions table/options/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -518,7 +518,7 @@ func WithPartitioningPolicyMode(mode PartitioningMode) PartitioningPolicyOption
}
}

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithPartitioningPolicyUniformPartitions(n uint64) PartitioningPolicyOption {
return func(p *partitioningPolicy, a *allocator.Allocator) {
p.Partitions = &Ydb_Table.PartitioningPolicy_UniformPartitions{
Expand All @@ -527,7 +527,7 @@ func WithPartitioningPolicyUniformPartitions(n uint64) PartitioningPolicyOption
}
}

// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithPartitioningPolicyExplicitPartitions(splitPoints ...value.Value) PartitioningPolicyOption {
return func(p *partitioningPolicy, a *allocator.Allocator) {
values := make([]*Ydb.TypedValue, len(splitPoints))
Expand Down Expand Up @@ -891,7 +891,7 @@ func WithIgnoreTruncated() ExecuteDataQueryOption {

// WithQueryCachePolicyKeepInCache manages keep-in-cache policy
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
// Use WithKeepInCache for disabling keep-in-cache policy
func WithQueryCachePolicyKeepInCache() QueryCachePolicyOption {
return withQueryCachePolicyKeepInCache(true)
Expand All @@ -905,7 +905,7 @@ func withQueryCachePolicyKeepInCache(keepInCache bool) QueryCachePolicyOption {

// WithQueryCachePolicy manages query cache policy
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WithQueryCachePolicy(opts ...QueryCachePolicyOption) ExecuteDataQueryOption {
return withQueryCachePolicy(opts...)
}
Expand Down
2 changes: 1 addition & 1 deletion table/table.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ type Client interface {
// - context was canceled or deadlined
// - session was created
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
CreateSession(ctx context.Context, opts ...Option) (s ClosableSession, err error)

// Do provide the best effort for execute operation.
Expand Down
2 changes: 1 addition & 1 deletion table/types/cast.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func VariantValue(v Value) (name string, idx uint32, _ Value, _ error) {

// DictFields returns dict values from abstract Value
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func DictFields(v Value) (map[Value]Value, error) {
return DictValues(v)
}
Expand Down
2 changes: 1 addition & 1 deletion table/types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const (

// WriteTypeStringTo writes ydb type string representation into buffer
//
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/master/VERSIONING.md#deprecated
// Deprecated: https://github.com/ydb-platform/ydb-go-sdk/blob/master/VERSIONING.md#deprecated
func WriteTypeStringTo(buf *bytes.Buffer, t Type) { //nolint: interfacer
buf.WriteString(t.Yql())
}
Expand Down
Loading

0 comments on commit ac576fa

Please sign in to comment.