create_foreign_table_stmt.go 234 B

123456789101112131415
  1. package pg
  2. import (
  3. "github.com/kyleconroy/sqlc/internal/sql/ast"
  4. )
  5. type CreateForeignTableStmt struct {
  6. Base *CreateStmt
  7. Servername *string
  8. Options *ast.List
  9. }
  10. func (n *CreateForeignTableStmt) Pos() int {
  11. return 0
  12. }