sqlparser

package
v3.17.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 23, 2024 License: MIT Imports: 13 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func ParseSQLMigration

func ParseSQLMigration(r io.Reader, direction Direction, debug bool) (stmts []string, useTx bool, err error)

Split given SQL script into individual statements and return SQL statements for given direction (up=true, down=false).

The base case is to simply split on semicolons, as these naturally terminate a statement.

However, more complex cases like pl/pgsql can have semicolons within a statement. For these cases, we provide the explicit annotations 'StatementBegin' and 'StatementEnd' to allow the script to tell us to ignore semicolons.

Types

type Direction

type Direction string
const (
	DirectionUp   Direction = "up"
	DirectionDown Direction = "down"
)

func FromBool

func FromBool(b bool) Direction

func (Direction) String added in v3.17.1

func (d Direction) String() string

func (Direction) ToBool added in v3.17.1

func (d Direction) ToBool() bool

type ParsedSQL added in v3.17.1

type ParsedSQL struct {
	UseTx    bool
	Up, Down []string
}

func ParseAllFromFS added in v3.17.1

func ParseAllFromFS(fsys fs.FS, filename string, debug bool) (*ParsedSQL, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL