Pre-release clean up.

This commit is contained in:
go-jet 2019-07-17 13:22:14 +02:00
parent 23a27033a4
commit b817f57035
27 changed files with 628 additions and 79 deletions

View file

@ -1,5 +1,3 @@
// Modeling of tables. This is where query preparation starts
package jet
import (
@ -30,7 +28,6 @@ type readableTable interface {
CROSS_JOIN(table ReadableTable) ReadableTable
}
// The sql tableName write interface.
type writableTable interface {
INSERT(columns ...column) InsertStatement
UPDATE(column column, columns ...column) UpdateStatement
@ -148,12 +145,10 @@ func (t *tableImpl) AS(alias string) {
}
}
// Returns the tableName's name in the database
func (t *tableImpl) SchemaName() string {
return t.schemaName
}
// Returns the tableName's name in the database
func (t *tableImpl) TableName() string {
return t.name
}