-
Notifications
You must be signed in to change notification settings - Fork 26
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
feat: support float4 data type #1481
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
4394164
feat: support float4 data type
olavloite 5937f8f
chore(build): skip enforcer for now
olavloite f3233d5
chore: more enforcer.skip
olavloite 34a0893
chore: add more tests + some small fixes
olavloite 8c69e23
chore: update tests
olavloite b284615
test: modify integration tests
olavloite 5d81208
test: use staging endpoint for testing
olavloite 39ee37c
Merge branch 'postgresql-dialect' into float32
olavloite caf4bbb
test: fix more tests
olavloite ff61141
Merge branch 'postgresql-dialect' into float32
olavloite 70716f9
test: fix integration tests
olavloite 1c65a21
deps: update bom to latest version
olavloite 900a2fd
test: use float8 for tests when necessary
olavloite 92b9303
Merge branch 'postgresql-dialect' into float32
olavloite 56129d4
test: fix mock server tests
olavloite 4489652
build: only test with float4 on cloud-devel
olavloite 29f2cb3
fix: add type translation for JDBC
olavloite d1ede6b
fix: restore Django setting file
olavloite fbe73b1
fix: restore correct Django setting file
olavloite File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
INSTALLED_APPS = [ | ||
'sample_app' | ||
'sample_app' | ||
] | ||
DATABASES = { | ||
'default': { | ||
'ENGINE': 'django.db.backends.postgresql_psycopg2', | ||
'NAME': 'postgres', | ||
'USER': 'postgres', | ||
'PASSWORD': 'postgres', | ||
'PORT': '5432', | ||
'HOST': 'localhost' | ||
} | ||
'default': { | ||
'ENGINE': 'django.db.backends.postgresql_psycopg2', | ||
'NAME': 'postgres', | ||
'USER': 'postgres', | ||
'PASSWORD': 'postgres', | ||
'PORT': '5432', | ||
'HOST': 'localhost' | ||
} | ||
} | ||
|
||
USE_TZ = True |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is being removed now, as these are data types that needed special handling because:
int2[]
,int4[]
andfloat4[]
arrays.int8[]
andfloat8[]
before being sent to Cloud Spanner.float4
when Cloud Spanner supportsfloat4
natively.