Categorygithub.com/dakaheni/go-tsvector
modulepackage
0.0.0-20231127073401-6136614dc8f0
Repository: https://github.com/dakaheni/go-tsvector.git
Documentation: pkg.go.dev

# README

go-tsvector

test status github Go.Dev reference

Examples

SQL scan with casting

var out tsvector.TSVector
_ = sqlDB.QueryRow("SELECT $1::tsvector", "The quick brown fox jumps over the lazy dog").Scan(&out)

SQL scan while calling the to_tsvector function

var out tsvector.TSVector
_ = sqlDB.QueryRow("SELECT to_tsvector($1)", "The quick brown fox jumps over the lazy dog").Scan(&out)

Gorm support

type MyModel struct {
	ID  int64             `gorm:"primaryKey"`
	TSV tsvector.TSVector `gorm:"not null"`
}

in := &MyModel{
  TextTSV: tsvector.ToTSVector("The quick brown fox jumps over the lazy dog"),
}
_ = gormDB.Create(in)

var out MyModel
_ = gormDB.First(&out, in.ID)

# Functions

No description provided by the author

# Structs

No description provided by the author