[feat] 丰富错误提示信息

This commit is contained in:
2023-07-30 19:12:56 +08:00
parent e24dea4e1e
commit 42b16293b4
2 changed files with 14 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
package db
import "testing"
func TestJoinSub(t *testing.T) {
b := NewBuilder(conn)
b.Grammar = &Sqlite3Grammar{}
t.Log(b.On("Select 1 as a, 2 as b", "t1", "true").ToSql())
}