1234567891011121314151617181920212223242526272829303132333435 |
- //go:build windows || !cgo
- // +build windows !cgo
- package postgresql
- import (
- "errors"
- "io"
- "runtime"
- "github.com/sqlc-dev/sqlc/internal/source"
- "github.com/sqlc-dev/sqlc/internal/sql/ast"
- )
- func NewParser() *Parser {
- return &Parser{}
- }
- type Parser struct {
- }
- func (p *Parser) Parse(r io.Reader) ([]ast.Statement, error) {
- if runtime.GOOS == "windows" {
- return nil, errors.New("the PostgreSQL engine does not support Windows.")
- }
- return nil, errors.New("the PostgreSQL engine requires cgo. Please set CGO_ENABLED=1.")
- }
- // https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-COMMENTS
- func (p *Parser) CommentSyntax() source.CommentSyntax {
- return source.CommentSyntax{
- Dash: true,
- SlashStar: true,
- }
- }
|