os/persistentdata/persistentstorage/sqlite3api/TEST/TclScript/tkt3121.test
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
# 2008 May 16
sl@0
     2
#
sl@0
     3
# The author disclaims copyright to this source code.  In place of
sl@0
     4
# a legal notice, here is a blessing:
sl@0
     5
#
sl@0
     6
#    May you do good and not evil.
sl@0
     7
#    May you find forgiveness for yourself and forgive others.
sl@0
     8
#    May you share freely, never taking more than you give.
sl@0
     9
#
sl@0
    10
#***********************************************************************
sl@0
    11
#
sl@0
    12
# $Id: tkt3121.test,v 1.2 2008/07/12 14:52:21 drh Exp $
sl@0
    13
sl@0
    14
set testdir [file dirname $argv0]
sl@0
    15
source $testdir/tester.tcl
sl@0
    16
sl@0
    17
ifcapable !vtab {
sl@0
    18
  finish_test
sl@0
    19
  return
sl@0
    20
}
sl@0
    21
sl@0
    22
# Register the module
sl@0
    23
register_echo_module [sqlite3_connection_pointer db]
sl@0
    24
sl@0
    25
do_test vtabD-1.1 {
sl@0
    26
  execsql {
sl@0
    27
    PRAGMA encoding = 'utf16';
sl@0
    28
sl@0
    29
    CREATE TABLE r1(field);
sl@0
    30
    CREATE TABLE r2(col PRIMARY KEY, descr);
sl@0
    31
sl@0
    32
    INSERT INTO r1 VALUES('abcd');
sl@0
    33
    INSERT INTO r2 VALUES('abcd', 'A nice description');
sl@0
    34
    INSERT INTO r2 VALUES('efgh', 'Another description');
sl@0
    35
sl@0
    36
    CREATE VIRTUAL TABLE t1 USING echo(r1);
sl@0
    37
    CREATE VIRTUAL TABLE t2 USING echo(r2);
sl@0
    38
  }
sl@0
    39
} {}
sl@0
    40
sl@0
    41
do_test vtabD-1.2 {
sl@0
    42
  execsql {
sl@0
    43
    select
sl@0
    44
      t1.field as Field,
sl@0
    45
      t2.descr as Descr
sl@0
    46
    from t1 inner join t2 on t1.field = t2.col order by t1.field
sl@0
    47
  }
sl@0
    48
} {abcd {A nice description}}
sl@0
    49
sl@0
    50
finish_test