diff options
author | Jan de Visser <jan@de-visser.net> | 2021-06-27 21:00:08 -0400 |
---|---|---|
committer | Ali Mohammad Pur <Ali.mpfard@gmail.com> | 2021-07-08 17:55:59 +0430 |
commit | 30691549fdc0d6f703735fb0c30ab54cf0cecb65 (patch) | |
tree | efb328f7a7b42e5d647cbe8085d94920c57d6932 /Userland/Libraries/LibSQL/Forward.h | |
parent | 633dc74606a556cdea4606f93fa50f01f46e2cd6 (diff) | |
download | serenity-30691549fdc0d6f703735fb0c30ab54cf0cecb65.zip |
LibSQL: Move Order and Nulls enums from SQL::AST to SQL namespace
The Order enum is used in the Meta component of LibSQL. Using this enum
meant having to include the monster AST/AST.h include file. Furthermore,
they are sort of basic and therefore can live in the general SQL
namespace. Moved to LibSQL/Type.h.
Also introduced a new class, SQLResult, which is needed in future
patches.
Diffstat (limited to 'Userland/Libraries/LibSQL/Forward.h')
-rw-r--r-- | Userland/Libraries/LibSQL/Forward.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibSQL/Forward.h b/Userland/Libraries/LibSQL/Forward.h index e844a1e782..1ef5e733be 100644 --- a/Userland/Libraries/LibSQL/Forward.h +++ b/Userland/Libraries/LibSQL/Forward.h @@ -22,6 +22,7 @@ class IndexDef; class Key; class KeyPartDef; class Row; +class SQLResult; class TableDef; class TreeNode; class Tuple; |