You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As discussed in #494 , this import feature should better write as LOAD DATA INFILE, since it do not import schema but just data. Also documented by MySQL:
LOAD DATA is the complement of SELECT ... INTO OUTFILE.
desc: batch import data into OpenMLDBformat: import table file_pathex:import demo_table1 file:///OpenMLDB/cli/examples/taxi_tour_parquet_all/raw_data.csv;
Desc: support
LOAD DATA INFILE 'file_name'
SQL Statement like MySQLE.g:
LOAD DATA INFILE 'hello.csv' INTO TABLE t1;
The text was updated successfully, but these errors were encountered: