Add support for postgres GROUPING SET, ROLLUP and CUBE grouping operators

Add support for mysql WITH ROLLUP grouping operator
Add support for GROUPING operator
This commit is contained in:
go-jet 2023-03-28 13:16:57 +02:00
parent 31dc7b6dd3
commit fa69565dbf
9 changed files with 476 additions and 70 deletions

View file

@ -68,7 +68,7 @@ func GenerateDSN(dsn, destDir string, templates ...template.Template) (err error
}
func openConnection(connectionString string) *sql.DB {
fmt.Println("Connecting to MySQL database")
fmt.Println("Connecting to MySQL database...")
db, err := sql.Open("mysql", connectionString)
throw.OnError(err)