rmculpepper / sql

Embedding of some of SQL into Racket
33 stars 5 forks source link

ScalarExpr:AST triggers internal unbound identifier error #7

Closed LiberalArtist closed 6 years ago

LiberalArtist commented 6 years ago

The following program:

#lang racket

(require sql)

(select * 
        #:from t
        #:where (ScalarExpr:AST ,'(= x 1)))

produces the error, "../../Applications/Racket v7.0/share/pkgs/sql/private/parse.rkt:446:55: scalar-expr?: unbound identifier".

Is it perhaps supposed to be scalar-expr-ast??

rmculpepper commented 6 years ago

Indeed, thanks for the report!