1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00
serenity/Tests/LibSQL
Jan de Visser 2a46529170 LibSQL: Basic dynamic value classes for SQL Storage layer
This patch adds the basic dynamic value classes used by the SQL Storage
layer. The most elementary class is Value, which holds a typed Value
which can be converted to standard C++ types. A Tuple is a collection
of Values described by a TupleDescriptor, which specifies the names,
types, and ordering of the elements in the Tuple.

Tuples and Values can be serialized and deserialized to and from
ByteBuffers. This is mechanism which is used to save them to disk.

Tuples are used as keys in SQL indexes and rows in SQL tables.

Also included is a test file.
2021-06-19 22:06:45 +02:00
..
CMakeLists.txt Tests: Move LibSQL tests to Tests/LibSQL 2021-05-06 17:54:28 +02:00
TestSqlExpressionParser.cpp LibSQL: Rename expression tree depth limit test case 2021-06-08 19:08:13 +02:00
TestSqlStatementParser.cpp LibSQL: Limit the number of nested subqueries 2021-06-08 19:08:13 +02:00
TestSqlValueAndTuple.cpp LibSQL: Basic dynamic value classes for SQL Storage layer 2021-06-19 22:06:45 +02:00