Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Conarx Containers - MariaDB Docker Image
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Docker Containers
Conarx Containers - MariaDB Docker Image
Merge requests
!63
reworked build system
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
reworked build system
nkukard/containers-mariadb:nkupdates-edge
into
edge
Overview
0
Commits
1
Pipelines
23
Changes
3
Merged
Nigel Kukard
requested to merge
nkukard/containers-mariadb:nkupdates-edge
into
edge
7 months ago
Overview
0
Commits
1
Pipelines
23
Changes
3
Expand
👍
0
👎
0
Merge request reports
Compare
edge
version 22
595e07b6
7 months ago
version 21
b9b1d60b
7 months ago
version 20
75875780
7 months ago
version 19
6485611e
7 months ago
version 18
dd2b3065
7 months ago
version 17
f7903b66
7 months ago
version 16
dca2d3b6
7 months ago
version 15
a3edd36a
7 months ago
version 14
97e064c5
7 months ago
version 13
c05df079
7 months ago
version 12
c5a3626d
7 months ago
version 11
5e03e084
7 months ago
version 10
e1800bae
7 months ago
version 9
29bbc6f9
7 months ago
version 8
82dcb889
7 months ago
version 7
9e459ab9
7 months ago
version 6
390a8f50
7 months ago
version 5
e3160073
7 months ago
version 4
de8afd33
7 months ago
version 3
3bc607df
7 months ago
version 2
4d068818
7 months ago
version 1
97d33a38
7 months ago
edge (base)
and
latest version
latest version
772e4fb4
1 commit,
7 months ago
version 22
595e07b6
21 commits,
7 months ago
version 21
b9b1d60b
20 commits,
7 months ago
version 20
75875780
19 commits,
7 months ago
version 19
6485611e
18 commits,
7 months ago
version 18
dd2b3065
17 commits,
7 months ago
version 17
f7903b66
16 commits,
7 months ago
version 16
dca2d3b6
14 commits,
7 months ago
version 15
a3edd36a
13 commits,
7 months ago
version 14
97e064c5
12 commits,
7 months ago
version 13
c05df079
11 commits,
7 months ago
version 12
c5a3626d
10 commits,
7 months ago
version 11
5e03e084
9 commits,
7 months ago
version 10
e1800bae
8 commits,
7 months ago
version 9
29bbc6f9
7 commits,
7 months ago
version 8
82dcb889
6 commits,
7 months ago
version 7
9e459ab9
5 commits,
7 months ago
version 6
390a8f50
4 commits,
7 months ago
version 5
e3160073
3 commits,
7 months ago
version 4
de8afd33
3 commits,
7 months ago
version 3
3bc607df
1 commit,
7 months ago
version 2
4d068818
2 commits,
7 months ago
version 1
97d33a38
1 commit,
7 months ago
3 files
+
51
−
19
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
patches/mariadb-have_stacktrace.patch
0 → 100644
+
21
−
0
Options
https://jira.mariadb.org/browse/MDEV-24131
diff --git a/unittest/mysys/stacktrace-t.c b/unittest/mysys/stacktrace-t.c
index 8fa0db15b36..67eb099028e 100644
--- a/unittest/mysys/stacktrace-t.c
+++ b/unittest/mysys/stacktrace-t.c
@@ -22,6 +22,14 @@
char b_bss[10];
+#ifndef HAVE_STACKTRACE
+int my_safe_print_str(const char* val, size_t max_len)
+{
+ printf("%*s\n", (int) max_len, val);
+ return 0;
+}
+#endif
+
void test_my_safe_print_str()
{
char b_stack[10];
Loading