Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
tarantool
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
tarantool
Commits
c44dbfc6
Commit
c44dbfc6
authored
11 years ago
by
Dmitry E. Oboukhov
Browse files
Options
Downloads
Patches
Plain Diff
Delete double underscore, fix uncertainty in test.
parent
a3767dcc
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
include/tarantool_plugin.h
+5
-5
5 additions, 5 deletions
include/tarantool_plugin.h
src/plugins/pg/CMakeLists.txt
+0
-1
0 additions, 1 deletion
src/plugins/pg/CMakeLists.txt
test/box/admin.result
+0
-6
0 additions, 6 deletions
test/box/admin.result
test/box/admin.test
+0
-1
0 additions, 1 deletion
test/box/admin.test
with
5 additions
and
13 deletions
include/tarantool_plugin.h
+
5
−
5
View file @
c44dbfc6
...
...
@@ -49,14 +49,14 @@ struct tarantool_plugin {
struct
rlist
list
;
};
#define DECLARE_PLUGIN(
__
name,
__
version,
__
init,
__
stat) \
#define DECLARE_PLUGIN(name, version, init, stat)
\
extern "C" { \
struct tarantool_plugin plugin_meta = { \
PLUGIN_API_VERSION, \
__
version, \
__
name, \
__
init, \
__
stat, \
version, \
name, \
init, \
stat, \
{ NULL, NULL } \
}; \
}
...
...
This diff is collapsed.
Click to expand it.
src/plugins/pg/CMakeLists.txt
+
0
−
1
View file @
c44dbfc6
...
...
@@ -7,7 +7,6 @@ if (PostgreSQL_FOUND)
add_compile_flags
(
"C;CXX"
"-I
${
PostgreSQL_INCLUDE_DIR
}
"
)
add_compile_flags
(
"C;CXX"
"-L
${
PostgreSQL_LIBRARY_DIR
}
"
)
add_compile_flags
(
"C;CXX"
"-l
${
PostgreSQL_LIBRARIES
}
"
)
add_compile_flags
(
"C;CXX"
"-shared"
)
add_library
(
pg SHARED pg.cc
)
install
(
TARGETS pg LIBRARY DESTINATION
${
PLUGIN_DIR
}
)
...
...
This diff is collapsed.
Click to expand it.
test/box/admin.result
+
0
−
6
View file @
c44dbfc6
...
...
@@ -77,12 +77,6 @@ configuration:
space[0].index[0].key_field[0].fieldno: "0"
space[0].index[0].key_field[0].type: "NUM"
...
show plugins
---
plugins:
- { name: "postgresql", version: 1 }
- { name: "mysql", version: 1 }
...
show stat
---
statistics:
...
...
This diff is collapsed.
Click to expand it.
test/box/admin.test
+
0
−
1
View file @
c44dbfc6
...
...
@@ -8,7 +8,6 @@ exec admin "exit"
exec
admin
"show stat"
exec
admin
"help"
exec
admin
"show configuration"
exec
admin
"show plugins"
exec
admin
"show stat"
exec
sql
"insert into t0 values (1, 'tuple')"
exec
admin
"save snapshot"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment