lua: move to lang/ directory

Support for more languages is comming, so let's group them
in a separate directory.
This commit is contained in:
Piotr Sarna
2021-08-09 13:12:04 +02:00
parent 46c6603fe0
commit 4e952df470
8 changed files with 5 additions and 6 deletions

View File

@@ -508,7 +508,7 @@ set(scylla_sources
locator/simple_strategy.cc
locator/snitch_base.cc
locator/token_metadata.cc
lua.cc
lang/lua.cc
main.cc
memtable.cc
message/messaging_service.cc

View File

@@ -1006,7 +1006,7 @@ scylla_core = (['database.cc',
'mutation_writer/shard_based_splitting_writer.cc',
'mutation_writer/partition_based_splitting_writer.cc',
'mutation_writer/feed_writers.cc',
'lua.cc',
'lang/lua.cc',
'service/raft/schema_raft_state_machine.cc',
'service/raft/raft_sys_table_storage.cc',
'serializer.cc',

View File

@@ -20,7 +20,6 @@
*/
#include "user_function.hh"
#include "lua.hh"
#include "log.hh"
#include "cql_serialization_format.hh"

View File

@@ -25,7 +25,7 @@
#include "abstract_function.hh"
#include "scalar_function.hh"
#include "lua.hh"
#include "lang/lua.hh"
namespace cql3 {
namespace functions {

View File

@@ -25,7 +25,7 @@
#include "prepared_statement.hh"
#include "service/migration_manager.hh"
#include "service/storage_proxy.hh"
#include "lua.hh"
#include "lang/lua.hh"
#include "database.hh"
#include "cql3/query_processor.hh"

View File

@@ -90,7 +90,7 @@
#include "user_types_metadata.hh"
#include "index/target_parser.hh"
#include "lua.hh"
#include "lang/lua.hh"
#include "db/query_context.hh"
#include "serializer.hh"

View File

View File