mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 13:32:33 +01:00
fbfb962c24
bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY Makefile: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/Makefile -> storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile mgmapi_logevent2.cpp: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent_dual.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp Makefile: Rename mgmapi_logevent_dual to mgmapi_logevent2 mgmapi_logevent2.cpp: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp: Rename: storage/ndb/ndbapi-examples/mgmapi_logevent_dual/mgmapi_logevent2.cpp -> storage/ndb/ndbapi-examples/mgmapi_logevent2/mgmapi_logevent2.cpp storage/ndb/ndbapi-examples/Makefile: Rename mgmapi_logevent_dual to mgmapi_logevent2 storage/ndb/ndbapi-examples/mgmapi_logevent2/Makefile: Rename mgmapi_logevent_dual to mgmapi_logevent2 mysql-test/r/ndb_dd_ddl.result: bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY mysql-test/t/ndb_dd_ddl.test: bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY sql/ha_ndbcluster.cc: bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: disallowed TABLESPACE declaration for STORAGE MEMORY
27 lines
467 B
Makefile
27 lines
467 B
Makefile
BIN_DIRS := ndbapi_simple \
|
|
ndbapi_async \
|
|
ndbapi_async1 \
|
|
ndbapi_retries \
|
|
ndbapi_simple_index \
|
|
ndbapi_event \
|
|
ndbapi_scan \
|
|
mgmapi_logevent \
|
|
ndbapi_simple_dual \
|
|
mgmapi_logevent2
|
|
|
|
bins: $(patsubst %, _bins_%, $(BIN_DIRS))
|
|
|
|
$(patsubst %, _bins_%, $(BIN_DIRS)) :
|
|
$(MAKE) -C $(patsubst _bins_%, %, $@) $(OPTS)
|
|
|
|
libs:
|
|
|
|
clean:
|
|
for f in ${BIN_DIRS}; do \
|
|
$(MAKE) -C $$f $@;\
|
|
done
|
|
|
|
clean_dep: clean
|
|
cleanall: clean
|
|
tidy: clean
|
|
distclean: clean
|