Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
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
nexedi
MariaDB
Commits
42ededf4
Commit
42ededf4
authored
Mar 07, 2016
by
Vicențiu Ciorbaru
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Create a default frame bound when no frame is specified.
parent
974e65d3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
sql/sql_window.cc
sql/sql_window.cc
+12
-0
No files found.
sql/sql_window.cc
View file @
42ededf4
...
...
@@ -752,6 +752,18 @@ class Frame_current_row : public Frame_n_rows
Frame_cursor
*
get_frame_cursor
(
Window_frame
*
frame
,
bool
is_top_bound
)
{
// TODO-cvicentiu When a frame is not specified, which is the frame type
// that we will use?
// Postgres uses RANGE BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW.
// For now we use UNBOUNDED FOLLOWING and UNBOUNDED PRECEDING.
if
(
!
frame
)
{
if
(
is_top_bound
)
return
new
Frame_unbounded_preceding
;
else
return
new
Frame_unbounded_following
;
}
Window_frame_bound
*
bound
=
is_top_bound
?
frame
->
top_bound
:
frame
->
bottom_bound
;
...
...
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