mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 21:51:57 +00:00
8 lines
186 B
Bash
8 lines
186 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
FILE=${CURDIR}/file_02112
|
||
|
if [ -f $FILE ]; then
|
||
|
rm $FILE
|
||
|
fi
|
||
|
echo "drop table if exists t;create table t(i Int32) engine=Memory; insert into t select 1" >> $FILE
|