sqllogictest

Check-in [d7cce3fca8]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Test cases for views.
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d7cce3fca83c24a18866002affb01aed00a541a9
User & Date: shaneh 2009-03-20 02:27:10.000
Context
2009-03-23
15:27
Update the SQLite amalgamation to the latest code from CVS. check-in: 73f66663ec user: drh tags: trunk
2009-03-20
02:27
Test cases for views. check-in: d7cce3fca8 user: shaneh tags: trunk
2009-02-17
20:38
Update SQLite to version 3.6.11 (prerelease - CVS check-in 6298) check-in: efe8c1791f user: drh tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/slt_odbc3.c.
652
653
654
655
656
657
658




659

660
661
662
663
664
665
666

  ret = SQLGetInfo(pODBC3conn->dbc,
                   SQL_DBMS_NAME,
                   zDmbsName,
                   sizeof(zDmbsName),
                   &outLen);
  if( SQL_SUCCEEDED(ret) || (ret == SQL_SUCCESS_WITH_INFO) ){




    *zName = zDmbsName;

    return 0;
  }
  return 1;
}

/*
** This routine registers the ODBC3 database engine with the main







>
>
>
>
|
>







652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671

  ret = SQLGetInfo(pODBC3conn->dbc,
                   SQL_DBMS_NAME,
                   zDmbsName,
                   sizeof(zDmbsName),
                   &outLen);
  if( SQL_SUCCEEDED(ret) || (ret == SQL_SUCCESS_WITH_INFO) ){
    // map Microsoft SQL Server -> mssql
    if( stricmp("Microsoft SQL Server", zDmbsName)==0 ){
      *zName = "mssql";
    } else {
      *zName = zDmbsName;
    }
    return 0;
  }
  return 1;
}

/*
** This routine registers the ODBC3 database engine with the main
Added test/index/view/10/slt_good_0.test.
Added test/index/view/10/slt_good_1.test.

more than 10,000 changes

Added test/index/view/10/slt_good_2.test.

more than 10,000 changes

Added test/index/view/10/slt_good_3.test.

more than 10,000 changes

Added test/index/view/10/slt_good_4.test.

more than 10,000 changes

Added test/index/view/10/slt_good_5.test.

more than 10,000 changes

Added test/index/view/10/slt_good_6.test.

more than 10,000 changes

Added test/index/view/10/slt_good_7.test.

more than 10,000 changes

Added test/index/view/100/slt_good_0.test.

more than 10,000 changes

Added test/index/view/100/slt_good_1.test.

more than 10,000 changes

Added test/index/view/100/slt_good_2.test.

more than 10,000 changes

Added test/index/view/100/slt_good_3.test.

more than 10,000 changes

Added test/index/view/100/slt_good_4.test.

more than 10,000 changes

Added test/index/view/100/slt_good_5.test.

more than 10,000 changes

Added test/index/view/1000/slt_good_0.test.

more than 10,000 changes

Added test/index/view/10000/slt_good_0.test.

more than 10,000 changes