You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-11-05 04:50:35 +03:00
14 lines
571 B
SQL
14 lines
571 B
SQL
/*****************************************************************************
|
|
* Script Name: load_TestTime.sql
|
|
* Date Created: 2008.08.25
|
|
* Author: Joseph Williams
|
|
* Purpose: Script to load the performance test result from a CSV file.
|
|
******************************************************************************/
|
|
LOAD DATA INFILE '/usr/local/mariadb/columnstore/data/bulk/data/import/TestTime.tbl'
|
|
INTO TABLE TestTime
|
|
FIELDS
|
|
TERMINATED BY '|'
|
|
ENCLOSED BY '"'
|
|
LINES TERMINATED BY '\n'
|
|
(IterNum,SessNum,SQLSeqNum,SQLIdxNum,StartTime,EndTime);
|