Skip to content

Commit 8cc7702

Browse files
update branch references to main (apache#215)
* update branch references to `main` * ensure we point to ballista-compute * update a couple of links to point to ballista-compute
1 parent 2a6d5f2 commit 8cc7702

4 files changed

Lines changed: 7 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
Given that the parser produces a typed AST, any changes to the AST will technically be breaking and thus will result in a `0.(N+1)` version. We document changes that break via addition as "Added".
77

88
## [Unreleased]
9-
Check https://github.com/andygrove/sqlparser-rs/commits/master for undocumented changes.
9+
Check https://github.com/ballista-compute/sqlparser-rs/commits/main for undocumented changes.
1010

1111
### Changed
1212

@@ -166,3 +166,4 @@ We don't have a changelog for the changes made in 2018, but thanks to @crw5996,
166166

167167
## [0.1.0] - 2018-09-03
168168
Initial release
169+

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
44
[![Version](https://img.shields.io/crates/v/sqlparser.svg)](https://crates.io/crates/sqlparser)
5-
[![Build Status](https://travis-ci.org/andygrove/sqlparser-rs.svg?branch=master)](https://travis-ci.org/andygrove/sqlparser-rs)
6-
[![Coverage Status](https://coveralls.io/repos/github/andygrove/sqlparser-rs/badge.svg?branch=master)](https://coveralls.io/github/andygrove/sqlparser-rs?branch=master)
5+
[![Build Status](https://travis-ci.org/ballista-compute/sqlparser-rs.svg?branch=main)](https://travis-ci.org/ballista-computee/sqlparser-rs)
6+
[![Coverage Status](https://coveralls.io/repos/github/ballista-compute/sqlparser-rs/badge.svg?branch=main)](https://coveralls.io/github/ballista-compute/sqlparser-rs?branch=main)
77
[![Gitter Chat](https://badges.gitter.im/sqlparser-rs/community.svg)](https://gitter.im/sqlparser-rs/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
88

99
The goal of this project is to build a SQL lexer and parser capable of parsing
@@ -123,7 +123,7 @@ resources.
123123

124124
[tdop-tutorial]: https://eli.thegreenplace.net/2010/01/02/top-down-operator-precedence-parsing
125125
[`cargo fmt`]: https://github.com/rust-lang/rustfmt#on-the-stable-toolchain
126-
[current issues]: https://github.com/andygrove/sqlparser-rs/issues
126+
[current issues]: https://github.com/ballista-compute/sqlparser-rs/issues
127127
[DataFusion]: https://github.com/apache/arrow/tree/master/rust/datafusion
128128
[LocustDB]: https://github.com/cswinter/LocustDB
129129
[Pratt Parser]: https://tdop.github.io/

tests/sqlparser_common.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2878,7 +2878,7 @@ fn parse_start_transaction() {
28782878
verified_stmt("START TRANSACTION ISOLATION LEVEL REPEATABLE READ");
28792879
verified_stmt("START TRANSACTION ISOLATION LEVEL SERIALIZABLE");
28802880

2881-
// Regression test for https://github.com/andygrove/sqlparser-rs/pull/139,
2881+
// Regression test for https://github.com/ballista-compute/sqlparser-rs/pull/139,
28822882
// in which START TRANSACTION would fail to parse if followed by a statement
28832883
// terminator.
28842884
assert_eq!(

tests/sqlparser_postgres.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ fn parse_create_table_with_inherit() {
230230
#[test]
231231
fn parse_create_table_empty() {
232232
// Zero-column tables are weird, but supported by at least PostgreSQL.
233-
// <https://github.com/andygrove/sqlparser-rs/pull/94>
233+
// <https://github.com/ballista-compute/sqlparser-rs/pull/94>
234234
let _ = pg_and_generic().verified_stmt("CREATE TABLE t ()");
235235
}
236236

0 commit comments

Comments
 (0)