#!sqlite3 # # 2025-11-12 # # The author disclaims copyright to this source code. In place of # a legal notice, here is a blessing: # # May you do good and not evil. # May you find forgiveness for yourself and forgive others. # May you share freely, never taking more than you give. # #*********************************************************************** # # Test cases for the ".mode" command of the CLI. # To run these tests: # # ./sqlite3 test/modeA.sql # # .open :memory: CREATE TABLE t1(a,b,c,d,e); INSERT INTO t1 VALUES(1,2.5,'three',x'4444',NULL); INSERT INTO t1 SELECT b,c,d,e,a FROM t1; INSERT INTO t1 SELECT d,e,a,b,c FROM t1; .mode box .testcase 100 SELECT * FROM t1; .check <