Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: security feature - login history #560

Open
wants to merge 5 commits into
base: POLARDB_15_STABLE
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions external/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ SUBDIRS =
# sort extention by names, less git conflict
SUBDIRS += polar_feature_utils
SUBDIRS += polar_io_stat
SUBDIRS += polar_login_history
SUBDIRS += polar_monitor
SUBDIRS += polar_monitor_preload
SUBDIRS += polar_parameter_manager
Expand Down
20 changes: 20 additions & 0 deletions external/polar_login_history/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# external/polar_login_history/Makefile

MODULE_big = polar_login_history
OBJS = polar_login_history.o
EXTENSION = polar_login_history
NO_INSTALLCHECK = 1

ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = external/polar_login_history
top_builddir = ../..
include $(top_builddir)/src/Makefile.global
include $(top_srcdir)/contrib/contrib-global.mk
endif

check:
$(prove_check)
Loading