Skip to content

Commit 1d5da05

Browse files
author
Pierre-Luc Gagné
committed
Refactor SQL headers into core/ddl/dml/dql split
- Replace monolithic sql include usage with split headers\n- Add shared write-side internals header used by DML and DQL extensions\n- Update umbrella/database headers and unit test includes\n- Keep build and unit tests green after include graph changes
1 parent ed479e3 commit 1d5da05

11 files changed

Lines changed: 6412 additions & 6 deletions

File tree

lib/include/ds_mysql/database.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
#include "ds_mysql/database_name.hpp"
1818
#include "ds_mysql/host_name.hpp"
1919
#include "ds_mysql/port_number.hpp"
20-
#include "ds_mysql/sql.hpp"
20+
#include "ds_mysql/sql_ddl.hpp"
21+
#include "ds_mysql/sql_dml.hpp"
22+
#include "ds_mysql/sql_dql.hpp"
2123

2224
namespace ds_mysql {
2325

lib/include/ds_mysql/ds_mysql.hpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,7 @@
1313

1414
#include "ds_mysql/database.hpp"
1515
#include "ds_mysql/metadata.hpp"
16-
#include "ds_mysql/sql.hpp"
16+
#include "ds_mysql/sql_ddl.hpp"
17+
#include "ds_mysql/sql_dml.hpp"
18+
#include "ds_mysql/sql_dql.hpp"
1719
#include "ds_mysql/version.hpp"

0 commit comments

Comments
 (0)