openhub.net
Black Duck Software, Inc.
Open Hub
Follow @
OH
Sign In
Join Now
Projects
People
Organizations
Tools
Blog
BDSA
Projects
People
Projects
Organizations
Forums
S
sql
Settings
|
Report Duplicate
3
I Use This!
×
Login Required
Log in to Open Hub
Remember Me
Inactive
Commits
: Listings
Analyzed
1 day
ago. based on code collected
1 day
ago.
Jun 14, 2024 — Jun 14, 2025
Showing page 1 of 3
Search / Filter on:
Commit Message
Contributor
Files Modified
Lines Added
Lines Removed
Code Location
Date
Moved SQL::VERSION into its own file, so that the Rakefile won't have to load the entire SQL library just to get the version string.
Dray Lacy
More...
almost 17 years ago
Added support for approximate float values (1E+5, -2.5E+30, etc.)
Dray Lacy
More...
almost 17 years ago
Added CURRENT_USER.
Dray Lacy
More...
almost 17 years ago
Added implied AS clauses ('SELECT * FROM users u' instead of 'SELECT * FROM users AS u').
Dray Lacy
More...
almost 17 years ago
Added quoting around all generated column and table names.
Dray Lacy
More...
almost 17 years ago
Added better support for string quoting. It's still not all the way there yet, but it's better than it was.
Dray Lacy
More...
almost 17 years ago
Added support for using ORDER BY with an unsigned integer constant. Not sure exactly why you'd want to do this, but it's in the SQL-92 spec, so in it goes :-\
Dray Lacy
More...
almost 17 years ago
Added ASC / DESC to ORDER BY (defaults to ASC).
Dray Lacy
More...
almost 17 years ago
Added ORDER BY.
Dray Lacy
More...
almost 17 years ago
Added support for using subqueries in a WHERE clause.
Dray Lacy
More...
almost 17 years ago
Added support for IN predicates to have subqueries.
Dray Lacy
More...
almost 17 years ago
Fixed NOT EXISTS so that it doesn't negate the entire subquery.
Dray Lacy
More...
almost 17 years ago
Added EXISTS / NOT EXISTS.
Dray Lacy
More...
almost 17 years ago
Made the lexer case-insensitive.
Dray Lacy
More...
almost 17 years ago
DRYed up the statement tests a bit by extracting node creation into helper methods.
Dray Lacy
More...
almost 17 years ago
Added USING clause for joins.
Dray Lacy
More...
almost 17 years ago
DRYed up Column and Table nodes by making them extend from an Identifier node.
Dray Lacy
More...
almost 17 years ago
Renamed the As node's :name attribute to :column, since it's now a Column object instead of just a string.
Dray Lacy
More...
almost 17 years ago
Changed QualifiedColumn's initializer to accept a Table node and a Column node.
Dray Lacy
More...
almost 17 years ago
Changed QualifiedColumn to take a Table node in its initializer rather than just a string.
Dray Lacy
More...
almost 17 years ago
Added quoted identifiers.
Dray Lacy
More...
almost 17 years ago
Added FULL OUTER JOIN.
Dray Lacy
More...
almost 17 years ago
Added FULL JOIN.
Dray Lacy
More...
almost 17 years ago
Added RIGHT OUTER JOIN.
Dray Lacy
More...
almost 17 years ago
Added RIGHT JOIN.
Dray Lacy
More...
almost 17 years ago
Added LEFT OUTER JOIN.
Dray Lacy
More...
almost 17 years ago
Added LEFT JOIN.
Dray Lacy
More...
almost 17 years ago
Added INNER JOIN.
Dray Lacy
More...
almost 17 years ago
Cleaned up the table reference grammar in the racc file. Removed the table_reference_list node I had added which differed from the SQL-92 grammar spec.
Dray Lacy
More...
almost 17 years ago
Added explicit CROSS JOIN expression.
Dray Lacy
More...
almost 17 years ago
←
1
2
3
→
This site uses cookies to give you the best possible experience. By using the site, you consent to our use of cookies. For more information, please see our
Privacy Policy
Agree