Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Correctly respect subtypes for PG arrays and ranges | Sean Griffin | 2014-12-05 | 1 | -0/+18 |
| | | | | | | | | | | | | | The type registration was simply looking for the OID, and eagerly fetching/constructing the sub type when it was registered. However, numeric types have additional parameters which are extracted from the actual SQL string of the type during lookup, and can have their behavior change based on the result. We simply need to use the block form of registration, and look up the subtype lazily instead. Fixes #17935 | ||||
* | pg tests, get rid of global schema `schema_1`. | Yves Senn | 2014-12-02 | 1 | -1/+51 |
| | |||||
* | pg tests, move uniqueness validation test to array tests. | Yves Senn | 2014-12-02 | 1 | -0/+15 |
| | |||||
* | tests, extract pg number tests into separate file. | Yves Senn | 2014-12-02 | 2 | -35/+50 |
| | |||||
* | tests, move schema shorthand assertions into pg specific tests. | Yves Senn | 2014-12-02 | 8 | -5/+86 |
| | |||||
* | tests, move pg geometric tests out of `base_test`. | Yves Senn | 2014-12-02 | 1 | -6/+73 |
| | |||||
* | ugh, forgot to add this test to cdd90f39d796986dabf1678b3277b230dbe18961 | Aaron Patterson | 2014-12-01 | 1 | -0/+5 |
| | |||||
* | Pass symbol as an argument instead of a block | Erik Michaels-Ober | 2014-11-29 | 2 | -4/+2 |
| | |||||
* | oops, forgot to add the real assertion! | Aaron Patterson | 2014-11-24 | 1 | -0/+1 |
| | |||||
* | allow the "USING" statement to be specified on change column calls | Aaron Patterson | 2014-11-24 | 1 | -0/+25 |
| | |||||
* | Rename the primary key index when renaming a table in pg | Sean Griffin | 2014-11-22 | 1 | -0/+34 |
| | | | | | | | | Also checked to make sure this does not affect foreign key constraints. (It doesn't). Fixes #12856 Closes #14088 | ||||
* | Remove the unused second argument to `substitute_at` | Sean Griffin | 2014-11-17 | 1 | -1/+1 |
| | | | | Oh hey, we got to remove some code because of that! | ||||
* | rm `reorder_bind_params` | Sean Griffin | 2014-11-17 | 1 | -4/+1 |
| | | | | | | Arel handles this for us automatically. Updated tests, as BindParam is no longer a subclass of SqlLiteral. We should remove the second argument to substitute_at entirely, as it's no longer used | ||||
* | Build fix when running in isolation | Arun Agrawal | 2014-11-14 | 1 | -0/+1 |
| | | | | | `Computer` class needs to be require See #17217 for more details | ||||
* | pg tests, get rid of `sql_types_test.rb`. | Yves Senn | 2014-11-07 | 3 | -18/+14 |
| | |||||
* | pg tests, only execute what's necessary. | Yves Senn | 2014-11-07 | 2 | -27/+26 |
| | |||||
* | tests, remove unneeded requires. | Yves Senn | 2014-11-06 | 4 | -11/+0 |
| | |||||
* | tests, use SchemaDumpingHelper to dump a specific table. | Yves Senn | 2014-11-06 | 1 | -12/+12 |
| | | | | | This makes debugging the generated schema output much easier. As a side effect it also shaves off 2.5 seconds of test runtime. | ||||
* | Added SchemaDumper support for tables with jsonb columns. | Ted O'Meara | 2014-11-04 | 1 | -0/+8 |
| | |||||
* | fix set_pk_sequence and add a test for it. | Aaron Patterson | 2014-10-31 | 1 | -0/+8 |
| | |||||
* | add bigserial pk support | Aaron Patterson | 2014-10-29 | 1 | -0/+20 |
| | |||||
* | pg, test assigning non-array values to an array column. Closes #14716. | Yves Senn | 2014-10-16 | 1 | -0/+9 |
| | | | | | | The behavior has changed since 4.1 and non-array values are no longer type casted to a blank array. This way the user can define custom validations on that property. | ||||
* | add a truncate method to the connection | Aaron Patterson | 2014-09-22 | 1 | -0/+10 |
| | | | | | | it doesn't work on SQLite3 since it doesn't support truncate, but that's OK. If you call truncate on the connection, you're now bound to that database (same as if you use hstore or any other db specific feature). | ||||
* | pg, correctly dump foreign keys targeting tables in a different schema. | Yves Senn | 2014-09-17 | 1 | -0/+26 |
| | | | | | | Closes #16907. [Matthew Draper & Yves Senn] | ||||
* | pg, add test cases for updateable views. | Yves Senn | 2014-09-11 | 1 | -0/+45 |
| | |||||
* | reuse view test-cases for pg materialized view tests. | Yves Senn | 2014-09-11 | 1 | -58/+9 |
| | |||||
* | Added enable_extension! to helper | Abdelkader Boudih | 2014-09-05 | 4 | -21/+11 |
| | |||||
* | Don't test PostgreSQL implementation details | Akira Matsuda & Kohei Suzuki | 2014-08-29 | 1 | -3/+0 |
| | | | | | Asserting that the message contains "QUERY PLAN" is enough for the adapter's test. The plan may vary according to number of tuples etc. but that's out of our concern. | ||||
* | pg, `default_sequence_name` needs to return a string. | Yves Senn | 2014-08-25 | 1 | -6/+6 |
| | | | | | | | | | This is a reacon to https://github.com/rails/rails/commit/d6c1205584b1ba597db4071b168681678b1e9875#commitcomment-7502487 This backwards incompatibility was introduced with d6c12055 to fix #7516. However both `connection.default_sequence_name` and `model.sequence_name` are public API. The PostgreSQL adapter should honor the interface and return strings. /cc @matthewd @chancancode | ||||
* | Don't trim excess whitespace in pg #columns_for_distinct | Agis- | 2014-08-24 | 1 | -0/+8 |
| | | | | Fixes #16623 introduced by https://github.com/rails/rails/commit/3d5a2019bcccc6fb01bee4811ca669f4383edb51 | ||||
* | adding the exception RecordNotFound to UUID find | JoseLuis Torres | 2014-08-21 | 1 | -0/+14 |
| | |||||
* | Change the default `null` value for timestamps | Sean Griffin | 2014-08-12 | 1 | -4/+4 |
| | | | | | | | As per discussion, this changes the model generators to specify `null: false` for timestamp columns. A warning is now emitted if `timestamps` is called without a `null` option specified, so we can safely change the behavior when no option is specified in Rails 5. | ||||
* | Add support for Postgresql JSONB | Philippe Creux | 2014-07-24 | 1 | -9/+25 |
| | | | | [Philippe Creux, Chris Teague] | ||||
* | Allow to specify a type for foreign key column in migrations | Andrey Novikov | 2014-07-22 | 1 | -1/+1 |
| | | | | [Andrey Novikov & Łukasz Sarnacki] | ||||
* | Treat invalid uuid as nil | Abdelkader Boudih | 2014-07-14 | 1 | -0/+37 |
| | |||||
* | Dump PostgreSQL primary key with custom function as a default. | Andrey Novikov | 2014-07-11 | 1 | -0/+23 |
| | | | | | | | | | | | For example, if use pgcrypto extension in PostgreSQL 9.4 beta 1, where uuid-ossp extension isn't available for moment of writing, and thus to use a gen_random_uuid() method as a primary key default. In this case schema dumper wasn't able to correctly reconstruct create_table statement and lost primary key constraint on schema load. Fixes #16111. | ||||
* | Merge pull request #16072 from sgrif/sg-xml-quoting | Rafael Mendonça França | 2014-07-08 | 1 | -1/+14 |
|\ | | | | | Don't rely on the sql type to quote XML columns in PG | ||||
| * | Don't rely on the sql type to quote XML columns in PG | Sean Griffin | 2014-07-06 | 1 | -1/+14 |
| | | |||||
* | | Remove the `text?` predicate from the type objects | Sean Griffin | 2014-07-06 | 14 | -18/+0 |
|/ | | | | | | | This was only used for uniqueness validations. The first usage was in conjunction with `limit`. Types which cast to string, but are not considered text cannot have a limit. The second case was only with an explicit `:case_sensitive => true` option given by the user. | ||||
* | Use the type object for quoting PG Ranges | Sean Griffin | 2014-07-05 | 2 | -6/+6 |
| | |||||
* | Fix typo | Rafael Mendonça França | 2014-07-04 | 1 | -1/+1 |
| | |||||
* | Merge pull request #16037 from sgrif/sg-money-quoting | Rafael Mendonça França | 2014-07-04 | 1 | -0/+24 |
|\ | | | | | Remove unneccessary special case for money in quoting | ||||
| * | Remove unneccessary special case for money in quoting | Sean Griffin | 2014-07-03 | 1 | -0/+24 |
| | | |||||
* | | Merge pull request #16036 from sgrif/sg-datetime-infinity | Rafael Mendonça França | 2014-07-03 | 1 | -0/+44 |
|\ \ | | | | | | | Do not rely on the column type when quoting infinity | ||||
| * | | Do not rely on the column type when quoting infinity | Sean Griffin | 2014-07-03 | 1 | -0/+44 |
| |/ | |||||
* / | Use the type object for type casting HStore columns | Sean Griffin | 2014-07-03 | 1 | -11/+5 |
|/ | |||||
* | Quote range strings when quoting PG ranges | Sean Griffin | 2014-07-02 | 2 | -1/+18 |
| | | | | | The test case for CVE-2014-3483 doesn't actually send the generated SQL to the database. The generated SQL is actually invalid for real inputs. | ||||
* | Fix SQL injection when querying against ranges and bitstrings | Rafael Mendonça França | 2014-07-02 | 1 | -0/+11 |
| | | | | Fix CVE-2014-3483 and protect against CVE-2014-3482. | ||||
* | Use the type object for sending JSON to the database | Sean Griffin | 2014-06-29 | 1 | -1/+1 |
| | |||||
* | [Postgresql tests] remove duplicate helper | Abdelkader Boudih | 2014-06-28 | 1 | -12/+3 |
| |