-
Notifications
You must be signed in to change notification settings - Fork 356
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
130 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
package mysql | ||
|
||
import ( | ||
"context" | ||
"database/sql" | ||
"encoding/csv" | ||
"fmt" | ||
"io" | ||
"os" | ||
"reflect" | ||
"strings" | ||
|
||
"github.com/go-sql-driver/mysql" | ||
"github.com/xo/usql/drivers" | ||
) | ||
|
||
func copyRows(ctx context.Context, db *sql.DB, rows *sql.Rows, table string) (int64, error) { | ||
localInfileSupported := false | ||
row := db.QueryRowContext(ctx, "SELECT @@GLOBAL.local_infile") | ||
err := row.Scan(&localInfileSupported) | ||
if err == nil && localInfileSupported && !hasBlobColumn(rows) { | ||
return bulkCopy(ctx, db, rows, table) | ||
} else { | ||
return drivers.CopyWithInsert(func(int) string { return "?" })(ctx, db, rows, table) | ||
} | ||
} | ||
|
||
func bulkCopy(ctx context.Context, db *sql.DB, rows *sql.Rows, table string) (int64, error) { | ||
mysql.RegisterReaderHandler("data", func() io.Reader { | ||
return toCsvReader(rows) | ||
}) | ||
defer mysql.DeregisterReaderHandler("data") | ||
tx, err := db.BeginTx(ctx, nil) | ||
if err != nil { | ||
return 0, err | ||
} | ||
var cnt int64 | ||
res, err := tx.ExecContext(ctx, fmt.Sprintf("LOAD DATA LOCAL INFILE 'Reader::data' INTO TABLE %s", | ||
strings.Replace(table, "(", " FIELDS TERMINATED BY ',' (", 1))) | ||
if err != nil { | ||
tx.Rollback() | ||
} else { | ||
err = tx.Commit() | ||
if err == nil { | ||
cnt, err = res.RowsAffected() | ||
} | ||
} | ||
return cnt, err | ||
} | ||
|
||
func hasBlobColumn(rows *sql.Rows) bool { | ||
columnTypes, err := rows.ColumnTypes() | ||
if err != nil { | ||
return false | ||
} | ||
for _, ct := range columnTypes { | ||
if ct.DatabaseTypeName() == "BLOB" { | ||
return true | ||
} | ||
} | ||
return false | ||
} | ||
|
||
func toCsvReader(rows *sql.Rows) io.Reader { | ||
r, w := io.Pipe() | ||
go writeAsCsv(rows, w) | ||
return r | ||
} | ||
|
||
// writeAsCsv writes the rows in a CSV format compatible with LOAD DATA INFILE | ||
func writeAsCsv(rows *sql.Rows, w *io.PipeWriter) { | ||
defer w.Close() // noop if already closed | ||
columnTypes, err := rows.ColumnTypes() | ||
if err != nil { | ||
w.CloseWithError(err) | ||
return | ||
} | ||
values := make([]interface{}, len(columnTypes)) | ||
valueRefs := make([]reflect.Value, len(columnTypes)) | ||
for i := 0; i < len(columnTypes); i++ { | ||
valueRefs[i] = reflect.New(columnTypes[i].ScanType()) | ||
values[i] = valueRefs[i].Interface() | ||
} | ||
record := make([]string, len(values)) | ||
csvWriter := csv.NewWriter(io.MultiWriter(w, os.Stdout)) | ||
for rows.Next() { | ||
if err = rows.Err(); err != nil { | ||
break | ||
} | ||
err = rows.Scan(values...) | ||
if err != nil { | ||
break | ||
} | ||
for i, valueRef := range valueRefs { | ||
// NB: Does not work for BLOBs. Use regular copy if there are BLOB columns | ||
record[i] = fmt.Sprintf("%v", valueRef.Elem().Interface()) | ||
} | ||
err = csvWriter.Write(record) | ||
if err != nil { | ||
break | ||
} | ||
} | ||
if err == nil { | ||
csvWriter.Flush() | ||
err = csvWriter.Error() | ||
} | ||
w.CloseWithError(err) // same as w.Close(), if err is nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters