Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
lsm_tree_postgres
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Smruti Ranjan
lsm_tree_postgres
Commits
94f282b1
Commit
94f282b1
authored
Dec 12, 2020
by
Paras Garg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
changed Makefile and added conf file
parent
3ecce2f2
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
195 additions
and
180 deletions
+195
-180
.vscode/c_cpp_properties.json
.vscode/c_cpp_properties.json
+17
-0
Makefile
Makefile
+6
-10
lsm.c
lsm.c
+170
-170
lsm.conf
lsm.conf
+2
-0
No files found.
.vscode/c_cpp_properties.json
0 → 100644
View file @
94f282b1
{
"configurations"
:
[
{
"name"
:
"Linux"
,
"includePath"
:
[
"${workspaceFolder}/**"
,
"/home/paras/git/postgres/install/include/server"
],
"defines"
:
[],
"compilerPath"
:
"/usr/bin/gcc"
,
"cStandard"
:
"gnu17"
,
"cppStandard"
:
"gnu++14"
,
"intelliSenseMode"
:
"gcc-x64"
}
],
"version"
:
4
}
\ No newline at end of file
Makefile
View file @
94f282b1
...
...
@@ -5,17 +5,13 @@ PGFILEDESC = "lsm tree index based on existing btree index"
EXTENSION
=
lsm
DATA
=
lsm--1.0.sql
REGRESS
=
test
REGRESS_OPTS
=
--temp-config
$(top_srcdir)
/contrib/lsm3/lsm3.conf
#
REGRESS = test
#
REGRESS_OPTS = --temp-config $(top_srcdir)/contrib/lsm3/lsm3.conf
ifdef
USE_PGXS
PG_CONFIG
?=
pg_config
# postgres build stuff
PG_CONFIG
=
pg_config
PGXS
:=
$(
shell
$(PG_CONFIG)
--pgxs
)
include
$(PGXS)
else
subdir
=
contrib/lsm3
top_builddir
=
../..
include
$(top_builddir)/src/Makefile.global
include
$(top_srcdir)/contrib/contrib-global.mk
endif
lsm.c
View file @
94f282b1
This diff is collapsed.
Click to expand it.
lsm.conf
0 → 100644
View file @
94f282b1
shared_preload_libraries
=
'lsm'
lsm
.
top_index_size
=
1
MB
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment