Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
1119cf9
Extending gpfdist in Cloudberry Database to Support SFTP Protocol for…
Jul 12, 2025
23f372b
Feature: Add SFTP support to gpfdist for data ingestion
Jul 18, 2025
536a830
Feature: Add SFTP support to gpfdist for data
Jul 19, 2025
080908d
Feature: Add SFTP support to gpfdist for data
Jul 21, 2025
ecf10ac
Add SFTP support to gpfdist for data loading
Jul 26, 2025
3193c63
Add SFTP support to gpfdist for data ingestion
Jul 26, 2025
81649bd
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
18f20c9
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
d7c262f
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
7aff224
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
edb93c2
Add SFTP support to gpfdist for data ingestion
Aug 19, 2025
bcddd0b
Extending gpfdist in Cloudberry Database to Support SFTP Protocol for…
Jul 12, 2025
2c4cc59
Feature: Add SFTP support to gpfdist for data ingestion
Jul 18, 2025
b0bda87
Feature: Add SFTP support to gpfdist for data
Jul 19, 2025
976cc15
Feature: Add SFTP support to gpfdist for data
Jul 21, 2025
b283297
Add SFTP support to gpfdist for data loading
Jul 26, 2025
6d2f45c
Add SFTP support to gpfdist for data ingestion
Jul 26, 2025
47fabe8
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
14e20c1
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
bed2bee
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
2aad679
Add SFTP support to gpfdist for data ingestion
Aug 18, 2025
ae5ee92
Add SFTP support to gpfdist for data ingestion
Aug 19, 2025
da02369
Merge branch 'main' into temp_cloudberry
tuhaihe Oct 14, 2025
97bfa7c
Merge branch 'main' of https://github.com/ZTE-EBASE/cloudberry into t…
Oct 16, 2025
ef0466d
Add libssh2-devel package for gpfdist SFTP
Oct 16, 2025
09ea01d
Merge branch 'temp_cloudberry' of https://github.com/ZTE-EBASE/cloudb…
Oct 16, 2025
5fc0571
Merge branch 'main' of https://github.com/ZTE-EBASE/cloudberry into t…
Oct 17, 2025
8f4673a
Feature: Add SFTP support to gpfdist for data
Oct 18, 2025
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 src/backend/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ LIBS := $(filter-out -lreadline -ledit -ltermcap -lncurses -lcurses, $(LIBS))

# Cloudberry uses threads in the backend
LIBS := $(LIBS) -lpthread
LIBS := $(LIBS) -lssh2

ifeq ($(with_systemd),yes)
LIBS += -lsystemd
Expand Down
4 changes: 3 additions & 1 deletion src/backend/utils/misc/fstream/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ subdir = src/backend/utils/misc/fstream
top_builddir = ../../../../..
include $(top_builddir)/src/Makefile.global

override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)
LDFLAGS += -lssh2

override CPPFLAGS := -I$(srcdir) $(CPPFLAGS) $(CPPFLAGS)

OBJS = fstream.o gfile.o

Expand Down
Loading
Loading