• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..29-Sep-2021-

INTERNALS.mdH A D29-Sep-20212.9 KiB7253

README.mdH A D29-Sep-20211.5 KiB4033

db.goH A D29-Sep-202130.2 KiB1,133853

db_eval.goH A D29-Sep-202122.6 KiB938800

db_query.goH A D29-Sep-202127.2 KiB1,105841

db_test.goH A D29-Sep-202118.6 KiB674590

funcs.goH A D29-Sep-20216.9 KiB234180

inmem.goH A D29-Sep-202126.6 KiB988738

integration_test.goH A D29-Sep-202145.7 KiB1,4851,287

README.md

1This directory contains `spannertest`, an in-memory fake Cloud Spanner. A sibling
2directory, `spansql`, contains types and parser for the Cloud Spanner SQL dialect.
3
4`spansql` is reusable for anything that interacts with Cloud Spanner on a
5syntactic basis, such as tools for handling Spanner schema (DDL).
6
7`spannertest` builds on `spansql` for testing code that uses Cloud Spanner client
8libraries.
9
10Neither of these packages aims to be performant nor exact replicas of the
11production Cloud Spanner. They are reasonable for building tools, or writing
12unit or integration tests. Full-scale performance testing or serious workloads
13should use the production Cloud Spanner instead.
14
15See [INTERNALS.md](INTERNALS.md) for an explanation of the implementation.
16
17Here's a list of features that are missing or incomplete. It is roughly ordered
18by ascending esotericism:
19
20- expression functions
21- NUMERIC
22- more aggregation functions
23- SELECT HAVING
24- more literal types
25- expressions that return null for generated columns
26- generated columns referencing other generated columns
27- checking dependencies on a generated column before deleting a column
28- expression type casting, coercion
29- multiple joins
30- subselects
31- case insensitivity of table and column names and query aliases
32- transaction simulation
33- FOREIGN KEY and CHECK constraints
34- INSERT DML statements
35- set operations (UNION, INTERSECT, EXCEPT)
36- STRUCT types
37- partition support
38- conditional expressions
39- table sampling (implementation)
40