1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

:-) (CVS 39)

FossilOrigin-Name: 721d58f4e1677a5814c00a59cce8c065fea8e7fe
This commit is contained in:
drh
2000-06-02 14:38:46 +00:00
parent df16aed362
commit 1b07be5ab8
3 changed files with 10 additions and 9 deletions

View File

@ -23,15 +23,16 @@
# This file implements regression tests for SQLite library. The
# focus of this file is testing the SELECT statement.
#
# $Id: select2.test,v 1.2 2000/06/02 14:27:23 drh Exp $
# $Id: select2.test,v 1.3 2000/06/02 14:38:47 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
puts "Glob: [glob -nocomplain *.txt]"
execsql {CREATE TABLE tbl1(f1 int, f2 int)}
set f [open ./testdata1.txt w]
for {set i 0} {$i<=30} {incr i} {
puts $f "[expr {$i%9}]\t[expr {$i%10}]\n"
puts $f "[expr {$i%9}]\t[expr {$i%10}]"
}
close $f
execsql {COPY tbl1 FROM './testdata1.txt'}