Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 521
Fix misspellings in many AGE files#985
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -128,7 +128,7 @@ sudo apt-get install build-essential libreadline-dev zlib1g-dev flex bison | ||
| Apache AGE is intended to be simple to install and run. It can be installed with Docker and other traditional ways. | ||
| <h4><a><img width="20" src="/img/pg.svg"></a> | ||
| Install PosgtreSQL | ||
| Install PostgreSQL | ||
jsoref marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| </h4> | ||
| You will need to install an AGE compatible version of Postgres<a>, for now AGE supports Postgres 11, 12 & 13. Supporting the latest versions is on AGE roadmap. | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -104,7 +104,7 @@ if ! command -v go >/dev/null 2>&1 || { [ $(go version | grep -o -E '[0-9]+\.[0- | ||
| sudo open -w golang.pkg | ||
| elif [[ "$os" == "Linux" ]]; then | ||
| mdkir -p ~/tmp/go1.20.2 | ||
| mkdir -p ~/tmp/go1.20.2 | ||
jsoref marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| cd ~/tmp/go1.20.2 | ||
| if [[ "$arch" == "x86_64" ]]; then | ||
| curl "https://go.dev/dl/go1.20.2.linux-amd64.tar.gz" -o go1.20.2.tar.gz | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1147,7 +1147,7 @@ $$) AS r(result agtype); | ||
| (3 rows) | ||
| -- | ||
| --Coearce to Postgres 3 int types (smallint, int, bigint) | ||
| --Coerce to Postgres 3 int types (smallint, int, bigint) | ||
| -- | ||
| SELECT create_graph('type_coercion'); | ||
| NOTICE: graph "type_coercion" has been created | ||
| @@ -1441,9 +1441,9 @@ RETURN ''::int | ||
| $$) AS r(result agtype); | ||
| ERROR: invalid input syntax for integer: "" | ||
| SELECT * FROM cypher('expr', $$ | ||
| RETURN 'falze'::int | ||
| RETURN 'false_'::int | ||
jsoref marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| $$) AS r(result agtype); | ||
| ERROR: invalid input syntax for integer: "falze" | ||
| ERROR: invalid input syntax for integer: "false_" | ||
| -- | ||
| -- Test from an agtype value to agtype int | ||
| -- | ||
| @@ -1465,7 +1465,7 @@ RETURN ''::bool | ||
| $$) AS r(result agtype); | ||
| ERROR: typecast expression must be an integer or a boolean | ||
| SELECT * FROM cypher('expr', $$ | ||
| RETURN 'falze'::bool | ||
| RETURN 'false_'::bool | ||
| $$) AS r(result agtype); | ||
| ERROR: typecast expression must be an integer or a boolean | ||
| -- Test from an agtype value to an agtype numeric | ||
| @@ -2791,7 +2791,7 @@ $$) AS (toBoolean agtype); | ||
| -- should return null | ||
| SELECT * FROM cypher('expr', $$ | ||
| RETURN toBoolean("falze") | ||
| RETURN toBoolean("false_") | ||
| $$) AS (toBoolean agtype); | ||
| toboolean | ||
| ----------- | ||
| @@ -2861,7 +2861,7 @@ $$) AS (toFloat agtype); | ||
| -- should return null | ||
| SELECT * FROM cypher('expr', $$ | ||
| RETURN toFloat("falze") | ||
| RETURN toFloat("false_") | ||
| $$) AS (toFloat agtype); | ||
| tofloat | ||
| --------- | ||
| @@ -2931,7 +2931,7 @@ $$) AS (toInteger agtype); | ||
| -- should return null | ||
| SELECT * FROM cypher('expr', $$ | ||
| RETURN toInteger("falze") | ||
| RETURN toInteger("false_") | ||
| $$) AS (toInteger agtype); | ||
| tointeger | ||
| ----------- | ||
| @@ -5679,7 +5679,7 @@ SELECT * FROM cypher('UCSC', $$ RETURN collect(5) $$) AS (result agtype); | ||
| [5] | ||
| (1 row) | ||
| -- should return an empty aray | ||
| -- should return an empty array | ||
| SELECT * FROM cypher('UCSC', $$ RETURN collect(NULL) $$) AS (empty agtype); | ||
| empty | ||
| ------- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -254,7 +254,7 @@ SELECT * FROM cypher('cypher_index', $$ | ||
| (us)<-[:has_city]-(:City {city_id: 3, name:"Los Angeles", west_coast: true, country_code:"US"}), | ||
| (us)<-[:has_city]-(:City {city_id: 4, name:"Seattle", west_coast: true, country_code:"US"}), | ||
| (ca)<-[:has_city]-(:City {city_id: 5, name:"Vancouver", west_coast: true, country_code:"CA"}), | ||
| (ca)<-[:has_city]-(:City {city_id: 6, name:"Toroto", west_coast: false, country_code:"CA"}), | ||
| (ca)<-[:has_city]-(:City {city_id: 6, name:"Toronto", west_coast: false, country_code:"CA"}), | ||
jsoref marked this conversation as resolved.
Uh oh!There was an error while loading. Please reload this page. | ||
| (ca)<-[:has_city]-(:City {city_id: 7, name:"Montreal", west_coast: false, country_code:"CA"}), | ||
| (mx)<-[:has_city]-(:City {city_id: 8, name:"Mexico City", west_coast: false, country_code:"MX"}), | ||
| (mx)<-[:has_city]-(:City {city_id: 9, name:"Monterrey", west_coast: false, country_code:"MX"}), | ||
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.