activerecord-jdbc-adapter 1.2.2.1 → 1.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. data/.gitignore +1 -2
  2. data/.travis.yml +18 -3
  3. data/Appraisals +16 -0
  4. data/Gemfile +10 -10
  5. data/Gemfile.lock +27 -17
  6. data/LICENSE.txt +20 -17
  7. data/README.rdoc +29 -14
  8. data/Rakefile +4 -4
  9. data/activerecord-jdbc-adapter.gemspec +2 -1
  10. data/gemfiles/rails23.gemfile +12 -0
  11. data/gemfiles/rails23.gemfile.lock +44 -0
  12. data/gemfiles/rails30.gemfile +11 -0
  13. data/gemfiles/rails30.gemfile.lock +39 -0
  14. data/gemfiles/rails31.gemfile +11 -0
  15. data/gemfiles/rails31.gemfile.lock +41 -0
  16. data/gemfiles/rails32.gemfile +11 -0
  17. data/gemfiles/rails32.gemfile.lock +41 -0
  18. data/lib/arel/visitors/sql_server.rb +7 -0
  19. data/lib/arjdbc/db2/adapter.rb +82 -32
  20. data/lib/arjdbc/derby.rb +0 -4
  21. data/lib/arjdbc/derby/adapter.rb +1 -1
  22. data/lib/arjdbc/derby/connection_methods.rb +3 -2
  23. data/lib/arjdbc/discover.rb +16 -1
  24. data/lib/arjdbc/firebird/adapter.rb +5 -1
  25. data/lib/arjdbc/h2.rb +0 -1
  26. data/lib/arjdbc/h2/connection_methods.rb +3 -1
  27. data/lib/arjdbc/hsqldb.rb +0 -1
  28. data/lib/arjdbc/hsqldb/adapter.rb +4 -3
  29. data/lib/arjdbc/hsqldb/connection_methods.rb +3 -3
  30. data/lib/arjdbc/informix/adapter.rb +5 -1
  31. data/lib/arjdbc/jdbc/adapter.rb +22 -24
  32. data/lib/arjdbc/jdbc/adapter_java.jar +0 -0
  33. data/lib/arjdbc/jdbc/base_ext.rb +1 -1
  34. data/lib/arjdbc/jdbc/connection.rb +23 -29
  35. data/lib/arjdbc/jdbc/core_ext.rb +1 -1
  36. data/lib/arjdbc/jdbc/discover.rb +1 -1
  37. data/lib/arjdbc/jdbc/driver.rb +1 -1
  38. data/lib/arjdbc/jdbc/extension.rb +3 -3
  39. data/lib/arjdbc/jdbc/jdbc.rake +15 -5
  40. data/lib/arjdbc/mssql.rb +0 -1
  41. data/lib/arjdbc/mssql/adapter.rb +10 -4
  42. data/lib/arjdbc/mssql/connection_methods.rb +15 -15
  43. data/lib/arjdbc/mssql/limit_helpers.rb +24 -2
  44. data/lib/arjdbc/mssql/tsql_helper.rb +0 -8
  45. data/lib/arjdbc/mysql.rb +0 -1
  46. data/lib/arjdbc/mysql/adapter.rb +82 -0
  47. data/lib/arjdbc/mysql/connection_methods.rb +3 -4
  48. data/lib/arjdbc/oracle/adapter.rb +12 -2
  49. data/lib/arjdbc/postgresql.rb +0 -1
  50. data/lib/arjdbc/postgresql/adapter.rb +127 -27
  51. data/lib/arjdbc/postgresql/connection_methods.rb +3 -4
  52. data/lib/arjdbc/sqlite3.rb +0 -1
  53. data/lib/arjdbc/sqlite3/adapter.rb +13 -14
  54. data/lib/arjdbc/sqlite3/connection_methods.rb +3 -4
  55. data/lib/arjdbc/version.rb +1 -1
  56. data/rakelib/01-tomcat.rake +52 -0
  57. data/rakelib/02-test.rake +111 -0
  58. data/rakelib/db.rake +4 -3
  59. data/src/java/arjdbc/db2/DB2RubyJdbcConnection.java +7 -0
  60. data/src/java/arjdbc/jdbc/RubyJdbcConnection.java +8 -3
  61. data/test/abstract_db_create.rb +5 -1
  62. data/test/activerecord/connection_adapters/type_conversion_test.rb +0 -1
  63. data/test/activerecord/jall.sh +0 -0
  64. data/test/activerecord/jtest.sh +0 -0
  65. data/test/db/db2.rb +2 -0
  66. data/test/db/derby.rb +3 -5
  67. data/test/db/h2.rb +3 -1
  68. data/test/db/hsqldb.rb +2 -0
  69. data/test/db/informix.rb +2 -0
  70. data/test/db/jdbc.rb +11 -10
  71. data/test/db/jdbc_derby.rb +14 -0
  72. data/test/db/jdbc_h2.rb +17 -0
  73. data/test/db/jdbc_mysql.rb +13 -0
  74. data/test/db/jdbc_postgres.rb +23 -0
  75. data/test/db/jndi_config.rb +28 -33
  76. data/test/db/jndi_pooled_config.rb +35 -0
  77. data/test/db/logger.rb +1 -1
  78. data/test/db/mssql.rb +2 -0
  79. data/test/db/mysql.rb +2 -7
  80. data/test/db/mysql_config.rb +7 -0
  81. data/test/db/oracle.rb +2 -0
  82. data/test/db/postgres.rb +9 -7
  83. data/test/db/postgres_config.rb +10 -0
  84. data/test/db/sqlite3.rb +2 -0
  85. data/test/db2_reset_column_information_test.rb +0 -2
  86. data/test/derby_migration_test.rb +0 -1
  87. data/test/derby_multibyte_test.rb +0 -1
  88. data/test/derby_reset_column_information_test.rb +0 -3
  89. data/test/derby_row_locking_test.rb +0 -3
  90. data/test/derby_simple_test.rb +0 -1
  91. data/test/generic_jdbc_connection_test.rb +72 -17
  92. data/test/h2_change_column_test.rb +0 -1
  93. data/test/h2_simple_test.rb +0 -1
  94. data/test/helper.rb +22 -91
  95. data/test/jdbc_common.rb +98 -3
  96. data/test/jndi_callbacks_test.rb +6 -5
  97. data/test/jndi_test.rb +40 -15
  98. data/test/models/custom_pk_name.rb +14 -0
  99. data/test/mssql_ignore_system_views_test.rb +7 -4
  100. data/test/mssql_limit_offset_test.rb +30 -0
  101. data/test/mssql_multibyte_test.rb +1 -2
  102. data/test/mssql_reset_column_information_test.rb +0 -2
  103. data/test/mssql_row_locking_sql_test.rb +0 -2
  104. data/test/mssql_row_locking_test.rb +0 -2
  105. data/test/mysql_reset_column_information_test.rb +0 -2
  106. data/test/mysql_simple_test.rb +3 -18
  107. data/test/oracle_limit_test.rb +23 -0
  108. data/test/oracle_reset_column_information_test.rb +0 -2
  109. data/test/postgres_db_create_test.rb +0 -1
  110. data/test/postgres_drop_db_test.rb +0 -1
  111. data/test/postgres_information_schema_leak_test.rb +0 -1
  112. data/test/postgres_native_type_mapping_test.rb +17 -14
  113. data/test/postgres_nonseq_pkey_test.rb +0 -1
  114. data/test/postgres_reserved_test.rb +1 -2
  115. data/test/postgres_reset_column_information_test.rb +0 -3
  116. data/test/postgres_schema_search_path_test.rb +0 -1
  117. data/test/postgres_simple_test.rb +40 -1
  118. data/test/postgres_table_alias_length_test.rb +0 -1
  119. data/test/postgres_type_conversion_test.rb +0 -1
  120. data/test/row_locking.rb +6 -2
  121. data/test/simple.rb +57 -20
  122. data/test/sqlite3_reset_column_information_test.rb +0 -2
  123. data/test/sqlite3_simple_test.rb +1 -16
  124. data/test/sybase_reset_column_information_test.rb +0 -2
  125. metadata +366 -343
  126. data/lib/arjdbc/jdbc/require_driver.rb +0 -16
@@ -1,24 +1,27 @@
1
1
  require 'jdbc_common'
2
- require 'db/postgres'
3
2
 
4
3
  class CreateNativeTypeMappingTestSchema < ActiveRecord::Migration
5
4
  def self.up
6
5
  execute "DROP SEQUENCE IF EXISTS seq_pk_customers"
7
6
  execute "CREATE SEQUENCE seq_pk_customers"
8
- execute %q{
7
+ columns = [
8
+ "bigint_serial_should_be_integer bigint default nextval('seq_pk_customers')",
9
+ "integer_serial_should_be_integer integer default nextval('seq_pk_customers')",
10
+ "varchar_should_be_string varchar(2)",
11
+ "timestamp_should_be_datetime timestamp",
12
+ "bytea_should_be_binary bytea",
13
+ "double_precision_should_be_float double precision",
14
+ "real_should_be_float real",
15
+ "bool_should_be_boolean bool",
16
+ "interval_should_be_string interval",
17
+ "bigint_should_be_integer bigint"
18
+ ]
19
+ columns << "uuid_should_be_string uuid" if PG_VERSION >= 80300
20
+ table_sql = %Q{
9
21
  CREATE TABLE customers (
10
- bigint_serial_should_be_integer bigint default nextval('seq_pk_customers'),
11
- integer_serial_should_be_integer integer default nextval('seq_pk_customers'),
12
- varchar_should_be_string varchar(2),
13
- timestamp_should_be_datetime timestamp,
14
- bytea_should_be_binary bytea,
15
- double_precision_should_be_float double precision,
16
- real_should_be_float real,
17
- bool_should_be_boolean bool,
18
- interval_should_be_string interval,
19
- bigint_should_be_integer bigint,
20
- uuid_should_be_string uuid
22
+ #{columns.join(",\n")}
21
23
  )}
24
+ execute table_sql
22
25
  end
23
26
 
24
27
  def self.down
@@ -44,7 +47,7 @@ class PostgresNativeTypeMappingTest < Test::Unit::TestCase
44
47
  end
45
48
 
46
49
  def test_uuid_column_should_map_to_string
47
- assert_equal :string, column_type("uuid_should_be_string")
50
+ assert_equal :string, column_type("uuid_should_be_string") if PG_VERSION >= 80300
48
51
  end
49
52
 
50
53
  def test_bigint_serial_should_be_mapped_to_integer
@@ -1,5 +1,4 @@
1
1
  require 'jdbc_common'
2
- require 'db/postgres'
3
2
 
4
3
  class CreateUrls < ActiveRecord::Migration
5
4
  def self.up
@@ -1,5 +1,4 @@
1
1
  require 'jdbc_common'
2
- require 'db/postgres'
3
2
  require 'models/reserved_word'
4
3
 
5
4
  class PostgresReservedWordsTest < Test::Unit::TestCase
@@ -19,4 +18,4 @@ class PostgresReservedWordsTest < Test::Unit::TestCase
19
18
  assert indexes[0].columns.include?(c), "#{indexes[0].columns.inspect} does not include #{c.inspect}"
20
19
  end
21
20
  end
22
- end
21
+ end
@@ -1,7 +1,4 @@
1
- #! /usr/bin/env jruby
2
-
3
1
  require 'jdbc_common'
4
- require 'db/postgres'
5
2
 
6
3
  class PostgresResetColumnInformationTest < Test::Unit::TestCase
7
4
  include ResetColumnInformationTestMethods
@@ -1,5 +1,4 @@
1
1
  require 'jdbc_common'
2
- require 'db/postgres'
3
2
 
4
3
  class CreateSchema < ActiveRecord::Migration
5
4
  def self.up
@@ -5,7 +5,6 @@
5
5
  #
6
6
 
7
7
  require 'jdbc_common'
8
- require 'db/postgres'
9
8
 
10
9
  class PostgresSimpleTest < Test::Unit::TestCase
11
10
  include SimpleTestMethods
@@ -17,6 +16,14 @@ class PostgresSimpleTest < Test::Unit::TestCase
17
16
  assert_equal 'PostgreSQLAdapter', classname
18
17
  end
19
18
 
19
+ def test_schema_search_path
20
+ assert_equal @connection.schema_search_path, "\"$user\",public"
21
+ end
22
+
23
+ def test_current_schema
24
+ assert_equal @connection.current_schema, "public"
25
+ end
26
+
20
27
  def test_encoding
21
28
  assert_not_nil @connection.encoding
22
29
  end
@@ -29,6 +36,7 @@ class PostgresSimpleTest < Test::Unit::TestCase
29
36
  end
30
37
 
31
38
  def test_create_xml_column
39
+ return unless PG_VERSION >= 80300
32
40
  assert_nothing_raised do
33
41
  @connection.create_table :xml_testings do |t|
34
42
  t.column :xml_test, :xml
@@ -57,6 +65,37 @@ class PostgresSimpleTest < Test::Unit::TestCase
57
65
  ensure
58
66
  @connection.drop_table :testings rescue nil
59
67
  end
68
+
69
+ def test_supports_standard_conforming_string
70
+ assert([true, false].include?(@connection.supports_standard_conforming_strings?))
71
+ end
72
+
73
+ def test_standard_conforming_string_default_set_on_new_connections
74
+ c = ActiveRecord::Base.postgresql_connection(POSTGRES_CONFIG)
75
+ assert_equal true, c.instance_variable_get("@standard_conforming_strings")
76
+ end
77
+
78
+ def test_default_standard_conforming_string
79
+ if @connection.supports_standard_conforming_strings?
80
+ assert_equal true, @connection.standard_conforming_strings?
81
+ else
82
+ assert_equal false, @connection.standard_conforming_strings?
83
+ end
84
+ end
85
+
86
+ def test_string_quoting_with_standard_conforming_strings
87
+ if @connection.supports_standard_conforming_strings?
88
+ s = "\\m it's \\M"
89
+ assert_equal "'\\m it''s \\M'", @connection.quote(s)
90
+ end
91
+ end
92
+
93
+ def test_string_quoting_without_standard_conforming_strings
94
+ @connection.standard_conforming_strings = false
95
+ s = "\\m it's \\M"
96
+ assert_equal "'\\\\m it''s \\\\M'", @connection.quote(s)
97
+ @connection.standard_conforming_strings = true
98
+ end
60
99
  end
61
100
 
62
101
  class PostgresTimestampTest < Test::Unit::TestCase
@@ -1,5 +1,4 @@
1
1
  require 'jdbc_common'
2
- require 'db/postgres'
3
2
 
4
3
  class PostgresTableAliasLengthTest < Test::Unit::TestCase
5
4
  def test_table_alias_length
@@ -1,5 +1,4 @@
1
1
  require 'jdbc_common'
2
- require 'db/postgres'
3
2
 
4
3
  class BooleanSchema < ActiveRecord::Migration
5
4
  def self.up
data/test/row_locking.rb CHANGED
@@ -1,9 +1,13 @@
1
- #! /usr/bin/env jruby
2
-
3
1
  require 'thread'
4
2
 
5
3
  module RowLockingTestMethods
6
4
 
5
+ # Simple SELECT ... FOR UPDATE test
6
+ def test_select_all_for_update
7
+ @row1_id = Entry.create!(:title => "row1").id
8
+ assert Entry.lock(true).all.map{|row| row.id}.include?(@row1_id)
9
+ end
10
+
7
11
  def test_row_locking
8
12
  row_locking_test_template
9
13
  end
data/test/simple.rb CHANGED
@@ -14,6 +14,7 @@ module MigrationSetup
14
14
  CreateAutoIds.up
15
15
  CreateValidatesUniquenessOf.up
16
16
  CreateThings.up
17
+ CreateCustomPkName.up
17
18
  @connection = ActiveRecord::Base.connection
18
19
  end
19
20
 
@@ -25,6 +26,7 @@ module MigrationSetup
25
26
  CreateAutoIds.down
26
27
  CreateValidatesUniquenessOf.down
27
28
  CreateThings.down
29
+ CreateCustomPkName.down
28
30
  ActiveRecord::Base.clear_active_connections!
29
31
  end
30
32
  end
@@ -131,6 +133,18 @@ module SimpleTestMethods
131
133
  assert !value.nil?
132
134
  entry = Entry.find_by_title('insert_title')
133
135
  assert_equal entry.id, value
136
+
137
+ # Ensure we get the id even if the PK column is not named 'id'
138
+ 1.upto(4) do |i|
139
+ cpn_name = "return id test#{i}"
140
+ cpn = CustomPkName.new
141
+ cpn.name = cpn_name
142
+ cpn.save
143
+ value = cpn.custom_id
144
+ assert !value.nil?
145
+ cpn = CustomPkName.find_by_name(cpn_name)
146
+ assert_equal cpn.custom_id, value
147
+ end
134
148
  end
135
149
  end
136
150
 
@@ -366,19 +380,6 @@ module SimpleTestMethods
366
380
  end
367
381
  end
368
382
 
369
- def test_remove_nonexistent_index
370
- assert_raise(ArgumentError, ActiveRecord::StatementInvalid, ActiveRecord::JDBCError) do
371
- @connection.remove_index :entries, :nonexistent_index
372
- end
373
- end
374
-
375
- def test_add_index_with_invalid_name_length
376
- index_name = 'x' * (@connection.index_name_length + 1)
377
- assert_raise(ArgumentError) do
378
- @connection.add_index "entries", "title", :name => index_name
379
- end
380
- end
381
-
382
383
  def test_dumping_schema
383
384
  require 'active_record/schema_dumper'
384
385
  @connection.add_index :entries, :title
@@ -557,13 +558,6 @@ module SimpleTestMethods
557
558
  f = StringId.first #reload is essential
558
559
  assert_equal "some_string", f.id
559
560
  end
560
-
561
- def test_model_with_no_id
562
- assert_nothing_raised do
563
- Thing.create! :name => "a thing"
564
- end
565
- assert_equal 1, Thing.find(:all).size
566
- end
567
561
  end
568
562
 
569
563
  module MultibyteTestMethods
@@ -644,6 +638,29 @@ module NonUTF8EncodingMethods
644
638
  end
645
639
  end
646
640
 
641
+ module XmlColumnTests
642
+ def self.included(base)
643
+ base.send :include, Tests if ActiveRecord::VERSION::MAJOR > 3 ||
644
+ (ActiveRecord::VERSION::MAJOR == 3 && ActiveRecord::VERSION::MINOR >= 1)
645
+ end
646
+ module Tests
647
+ def test_create_xml_column
648
+ assert_nothing_raised do
649
+ @connection.create_table :xml_testings do |t|
650
+ t.xml :xml_test
651
+ end
652
+ end
653
+
654
+ xml_test = @connection.columns(:xml_testings).detect do |c|
655
+ c.name == "xml_test"
656
+ end
657
+
658
+ assert_equal "text", xml_test.sql_type
659
+ ensure
660
+ @connection.drop_table :xml_testings rescue nil
661
+ end
662
+ end
663
+ end
647
664
  module ActiveRecord3TestMethods
648
665
  def self.included(base)
649
666
  base.send :include, Tests if ActiveRecord::VERSION::MAJOR == 3
@@ -664,6 +681,26 @@ module ActiveRecord3TestMethods
664
681
  entries = Entry.where(:title => @entry.title)
665
682
  assert_equal @entry, entries.first
666
683
  end
684
+
685
+ def test_remove_nonexistent_index
686
+ assert_raise(ArgumentError, ActiveRecord::StatementInvalid, ActiveRecord::JDBCError) do
687
+ @connection.remove_index :entries, :nonexistent_index
688
+ end
689
+ end
690
+
691
+ def test_add_index_with_invalid_name_length
692
+ index_name = 'x' * (@connection.index_name_length + 1)
693
+ assert_raise(ArgumentError) do
694
+ @connection.add_index "entries", "title", :name => index_name
695
+ end
696
+ end
697
+
698
+ def test_model_with_no_id
699
+ assert_nothing_raised do
700
+ Thing.create! :name => "a thing"
701
+ end
702
+ assert_equal 1, Thing.find(:all).size
703
+ end
667
704
  end
668
705
  end
669
706
 
@@ -1,5 +1,3 @@
1
- #! /usr/bin/env jruby
2
-
3
1
  require 'jdbc_common'
4
2
  require 'db/sqlite3'
5
3
 
@@ -8,6 +8,7 @@ class SQLite3SimpleTest < Test::Unit::TestCase
8
8
  include ActiveRecord3TestMethods
9
9
  include ColumnNameQuotingTests
10
10
  include DirtyAttributeTests
11
+ include XmlColumnTests
11
12
 
12
13
  def test_recreate_database
13
14
  assert @connection.tables.include?(Entry.table_name)
@@ -220,22 +221,6 @@ class SQLite3SimpleTest < Test::Unit::TestCase
220
221
  assert_equal 9, rating_column.precision
221
222
  assert_equal 7, rating_column.scale
222
223
  end
223
-
224
- def test_create_xml_column
225
- assert_nothing_raised do
226
- @connection.create_table :xml_testings do |t|
227
- t.xml :xml_test
228
- end
229
- end
230
-
231
- xml_test = @connection.columns(:xml_testings).detect do |c|
232
- c.name == "xml_test"
233
- end
234
-
235
- assert_equal "text", xml_test.sql_type
236
- ensure
237
- @connection.drop_table :xml_testings rescue nil
238
- end
239
224
  end
240
225
 
241
226
  # assert_raise ActiveRecord::RecordInvalid do
@@ -1,5 +1,3 @@
1
- #! /usr/bin/env jruby
2
-
3
1
  require 'jdbc_common'
4
2
  require 'db/sybase'
5
3
 
metadata CHANGED
@@ -1,364 +1,387 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: activerecord-jdbc-adapter
3
- version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 1.2.2.1
3
+ version: !ruby/object:Gem::Version
4
+ prerelease:
5
+ version: 1.2.5
6
6
  platform: ruby
7
- authors:
8
- - Nick Sieger, Ola Bini and JRuby contributors
9
- autorequire:
7
+ authors:
8
+ - Nick Sieger, Ola Bini and JRuby contributors
9
+ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
-
13
- date: 2012-10-19 00:00:00 Z
12
+ date: 2013-01-02 00:00:00.000000000 Z
14
13
  dependencies: []
15
-
16
14
  description: |-
17
15
  activerecord-jdbc-adapter is a database adapter for Rails\' ActiveRecord
18
16
  component that can be used with JRuby[http://www.jruby.org/]. It allows use of
19
17
  virtually any JDBC-compliant database with your JRuby on Rails application.
20
18
  email: nick@nicksieger.com, ola.bini@gmail.com
21
19
  executables: []
22
-
23
20
  extensions: []
24
-
25
21
  extra_rdoc_files: []
26
-
27
- files:
28
- - .gitignore
29
- - .travis.yml
30
- - Gemfile
31
- - Gemfile.lock
32
- - History.txt
33
- - LICENSE.txt
34
- - README.rdoc
35
- - Rakefile
36
- - activerecord-jdbc-adapter.gemspec
37
- - bench/bench_attributes.rb
38
- - bench/bench_attributes_new.rb
39
- - bench/bench_create.rb
40
- - bench/bench_find_all.rb
41
- - bench/bench_find_all_mt.rb
42
- - bench/bench_model.rb
43
- - bench/bench_new.rb
44
- - bench/bench_new_valid.rb
45
- - bench/bench_valid.rb
46
- - lib/active_record/connection_adapters/derby_adapter.rb
47
- - lib/active_record/connection_adapters/h2_adapter.rb
48
- - lib/active_record/connection_adapters/hsqldb_adapter.rb
49
- - lib/active_record/connection_adapters/informix_adapter.rb
50
- - lib/active_record/connection_adapters/jdbc_adapter.rb
51
- - lib/active_record/connection_adapters/jndi_adapter.rb
52
- - lib/active_record/connection_adapters/mssql_adapter.rb
53
- - lib/active_record/connection_adapters/mysql2_adapter.rb
54
- - lib/active_record/connection_adapters/mysql_adapter.rb
55
- - lib/active_record/connection_adapters/oracle_adapter.rb
56
- - lib/active_record/connection_adapters/postgresql_adapter.rb
57
- - lib/active_record/connection_adapters/sqlite3_adapter.rb
58
- - lib/activerecord-jdbc-adapter.rb
59
- - lib/arel/engines/sql/compilers/db2_compiler.rb
60
- - lib/arel/engines/sql/compilers/derby_compiler.rb
61
- - lib/arel/engines/sql/compilers/h2_compiler.rb
62
- - lib/arel/engines/sql/compilers/hsqldb_compiler.rb
63
- - lib/arel/engines/sql/compilers/jdbc_compiler.rb
64
- - lib/arel/engines/sql/compilers/mssql_compiler.rb
65
- - lib/arel/visitors/compat.rb
66
- - lib/arel/visitors/db2.rb
67
- - lib/arel/visitors/derby.rb
68
- - lib/arel/visitors/firebird.rb
69
- - lib/arel/visitors/hsqldb.rb
70
- - lib/arel/visitors/sql_server.rb
71
- - lib/arjdbc.rb
72
- - lib/arjdbc/db2.rb
73
- - lib/arjdbc/db2/adapter.rb
74
- - lib/arjdbc/derby.rb
75
- - lib/arjdbc/derby/adapter.rb
76
- - lib/arjdbc/derby/connection_methods.rb
77
- - lib/arjdbc/discover.rb
78
- - lib/arjdbc/firebird.rb
79
- - lib/arjdbc/firebird/adapter.rb
80
- - lib/arjdbc/h2.rb
81
- - lib/arjdbc/h2/adapter.rb
82
- - lib/arjdbc/h2/connection_methods.rb
83
- - lib/arjdbc/hsqldb.rb
84
- - lib/arjdbc/hsqldb/adapter.rb
85
- - lib/arjdbc/hsqldb/connection_methods.rb
86
- - lib/arjdbc/informix.rb
87
- - lib/arjdbc/informix/adapter.rb
88
- - lib/arjdbc/informix/connection_methods.rb
89
- - lib/arjdbc/jdbc.rb
90
- - lib/arjdbc/jdbc/adapter.rb
91
- - lib/arjdbc/jdbc/adapter_java.jar
92
- - lib/arjdbc/jdbc/base_ext.rb
93
- - lib/arjdbc/jdbc/callbacks.rb
94
- - lib/arjdbc/jdbc/column.rb
95
- - lib/arjdbc/jdbc/compatibility.rb
96
- - lib/arjdbc/jdbc/connection.rb
97
- - lib/arjdbc/jdbc/connection_methods.rb
98
- - lib/arjdbc/jdbc/core_ext.rb
99
- - lib/arjdbc/jdbc/discover.rb
100
- - lib/arjdbc/jdbc/driver.rb
101
- - lib/arjdbc/jdbc/extension.rb
102
- - lib/arjdbc/jdbc/java.rb
103
- - lib/arjdbc/jdbc/jdbc.rake
104
- - lib/arjdbc/jdbc/missing_functionality_helper.rb
105
- - lib/arjdbc/jdbc/quoted_primary_key.rb
106
- - lib/arjdbc/jdbc/railtie.rb
107
- - lib/arjdbc/jdbc/rake_tasks.rb
108
- - lib/arjdbc/jdbc/require_driver.rb
109
- - lib/arjdbc/jdbc/type_converter.rb
110
- - lib/arjdbc/mimer.rb
111
- - lib/arjdbc/mimer/adapter.rb
112
- - lib/arjdbc/mssql.rb
113
- - lib/arjdbc/mssql/adapter.rb
114
- - lib/arjdbc/mssql/connection_methods.rb
115
- - lib/arjdbc/mssql/limit_helpers.rb
116
- - lib/arjdbc/mssql/lock_helpers.rb
117
- - lib/arjdbc/mssql/tsql_helper.rb
118
- - lib/arjdbc/mysql.rb
119
- - lib/arjdbc/mysql/adapter.rb
120
- - lib/arjdbc/mysql/connection_methods.rb
121
- - lib/arjdbc/oracle.rb
122
- - lib/arjdbc/oracle/adapter.rb
123
- - lib/arjdbc/oracle/connection_methods.rb
124
- - lib/arjdbc/postgresql.rb
125
- - lib/arjdbc/postgresql/adapter.rb
126
- - lib/arjdbc/postgresql/connection_methods.rb
127
- - lib/arjdbc/sqlite3.rb
128
- - lib/arjdbc/sqlite3/adapter.rb
129
- - lib/arjdbc/sqlite3/connection_methods.rb
130
- - lib/arjdbc/sybase.rb
131
- - lib/arjdbc/sybase/adapter.rb
132
- - lib/arjdbc/version.rb
133
- - lib/generators/jdbc/USAGE
134
- - lib/generators/jdbc/jdbc_generator.rb
135
- - lib/jdbc_adapter.rb
136
- - lib/jdbc_adapter/rake_tasks.rb
137
- - lib/jdbc_adapter/version.rb
138
- - lib/pg.rb
139
- - pom.xml
140
- - rails_generators/jdbc_generator.rb
141
- - rails_generators/templates/config/initializers/jdbc.rb
142
- - rails_generators/templates/lib/tasks/jdbc.rake
143
- - rakelib/bundler_ext.rb
144
- - rakelib/compile.rake
145
- - rakelib/db.rake
146
- - rakelib/rails.rake
147
- - rakelib/test.rake
148
- - src/java/arjdbc/db2/DB2RubyJdbcConnection.java
149
- - src/java/arjdbc/derby/DerbyModule.java
150
- - src/java/arjdbc/h2/H2RubyJdbcConnection.java
151
- - src/java/arjdbc/informix/InformixRubyJdbcConnection.java
152
- - src/java/arjdbc/jdbc/AdapterJavaService.java
153
- - src/java/arjdbc/jdbc/JdbcConnectionFactory.java
154
- - src/java/arjdbc/jdbc/RubyJdbcConnection.java
155
- - src/java/arjdbc/jdbc/SQLBlock.java
156
- - src/java/arjdbc/mssql/MssqlRubyJdbcConnection.java
157
- - src/java/arjdbc/mysql/MySQLModule.java
158
- - src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java
159
- - src/java/arjdbc/oracle/OracleRubyJdbcConnection.java
160
- - src/java/arjdbc/postgresql/PostgresqlRubyJdbcConnection.java
161
- - src/java/arjdbc/sqlite3/Sqlite3RubyJdbcConnection.java
162
- - test/abstract_db_create.rb
163
- - test/activerecord/connection_adapters/type_conversion_test.rb
164
- - test/activerecord/connections/native_jdbc_mysql/connection.rb
165
- - test/activerecord/jall.sh
166
- - test/activerecord/jtest.sh
167
- - test/db/db2.rb
168
- - test/db/derby.rb
169
- - test/db/h2.rb
170
- - test/db/hsqldb.rb
171
- - test/db/informix.rb
172
- - test/db/jdbc.rb
173
- - test/db/jndi_config.rb
174
- - test/db/logger.rb
175
- - test/db/mssql.rb
176
- - test/db/mysql.rb
177
- - test/db/oracle.rb
178
- - test/db/postgres.rb
179
- - test/db/sqlite3.rb
180
- - test/db2_reset_column_information_test.rb
181
- - test/db2_simple_test.rb
182
- - test/derby_migration_test.rb
183
- - test/derby_multibyte_test.rb
184
- - test/derby_reset_column_information_test.rb
185
- - test/derby_row_locking_test.rb
186
- - test/derby_simple_test.rb
187
- - test/generic_jdbc_connection_test.rb
188
- - test/h2_change_column_test.rb
189
- - test/h2_simple_test.rb
190
- - test/has_many_through.rb
191
- - test/helper.rb
192
- - test/hsqldb_simple_test.rb
193
- - test/informix_simple_test.rb
194
- - test/jdbc_common.rb
195
- - test/jndi_callbacks_test.rb
196
- - test/jndi_test.rb
197
- - test/manualTestDatabase.rb
198
- - test/models/add_not_null_column_to_table.rb
199
- - test/models/auto_id.rb
200
- - test/models/data_types.rb
201
- - test/models/entry.rb
202
- - test/models/mixed_case.rb
203
- - test/models/reserved_word.rb
204
- - test/models/string_id.rb
205
- - test/models/thing.rb
206
- - test/models/validates_uniqueness_of_string.rb
207
- - test/mssql_db_create_test.rb
208
- - test/mssql_identity_insert_test.rb
209
- - test/mssql_ignore_system_views_test.rb
210
- - test/mssql_legacy_types_test.rb
211
- - test/mssql_limit_offset_test.rb
212
- - test/mssql_multibyte_test.rb
213
- - test/mssql_null_test.rb
214
- - test/mssql_reset_column_information_test.rb
215
- - test/mssql_row_locking_sql_test.rb
216
- - test/mssql_row_locking_test.rb
217
- - test/mssql_simple_test.rb
218
- - test/mysql_db_create_test.rb
219
- - test/mysql_index_length_test.rb
220
- - test/mysql_info_test.rb
221
- - test/mysql_multibyte_test.rb
222
- - test/mysql_nonstandard_primary_key_test.rb
223
- - test/mysql_reset_column_information_test.rb
224
- - test/mysql_simple_test.rb
225
- - test/oracle_reset_column_information_test.rb
226
- - test/oracle_simple_test.rb
227
- - test/oracle_specific_test.rb
228
- - test/postgres_db_create_test.rb
229
- - test/postgres_drop_db_test.rb
230
- - test/postgres_information_schema_leak_test.rb
231
- - test/postgres_mixed_case_test.rb
232
- - test/postgres_native_type_mapping_test.rb
233
- - test/postgres_nonseq_pkey_test.rb
234
- - test/postgres_reserved_test.rb
235
- - test/postgres_reset_column_information_test.rb
236
- - test/postgres_schema_search_path_test.rb
237
- - test/postgres_simple_test.rb
238
- - test/postgres_table_alias_length_test.rb
239
- - test/postgres_type_conversion_test.rb
240
- - test/row_locking.rb
241
- - test/simple.rb
242
- - test/sqlite3_reset_column_information_test.rb
243
- - test/sqlite3_simple_test.rb
244
- - test/sybase_jtds_simple_test.rb
245
- - test/sybase_reset_column_information_test.rb
22
+ files:
23
+ - .gitignore
24
+ - .travis.yml
25
+ - Appraisals
26
+ - Gemfile
27
+ - Gemfile.lock
28
+ - History.txt
29
+ - LICENSE.txt
30
+ - README.rdoc
31
+ - Rakefile
32
+ - activerecord-jdbc-adapter.gemspec
33
+ - bench/bench_attributes.rb
34
+ - bench/bench_attributes_new.rb
35
+ - bench/bench_create.rb
36
+ - bench/bench_find_all.rb
37
+ - bench/bench_find_all_mt.rb
38
+ - bench/bench_model.rb
39
+ - bench/bench_new.rb
40
+ - bench/bench_new_valid.rb
41
+ - bench/bench_valid.rb
42
+ - gemfiles/rails23.gemfile
43
+ - gemfiles/rails23.gemfile.lock
44
+ - gemfiles/rails30.gemfile
45
+ - gemfiles/rails30.gemfile.lock
46
+ - gemfiles/rails31.gemfile
47
+ - gemfiles/rails31.gemfile.lock
48
+ - gemfiles/rails32.gemfile
49
+ - gemfiles/rails32.gemfile.lock
50
+ - lib/active_record/connection_adapters/derby_adapter.rb
51
+ - lib/active_record/connection_adapters/h2_adapter.rb
52
+ - lib/active_record/connection_adapters/hsqldb_adapter.rb
53
+ - lib/active_record/connection_adapters/informix_adapter.rb
54
+ - lib/active_record/connection_adapters/jdbc_adapter.rb
55
+ - lib/active_record/connection_adapters/jndi_adapter.rb
56
+ - lib/active_record/connection_adapters/mssql_adapter.rb
57
+ - lib/active_record/connection_adapters/mysql2_adapter.rb
58
+ - lib/active_record/connection_adapters/mysql_adapter.rb
59
+ - lib/active_record/connection_adapters/oracle_adapter.rb
60
+ - lib/active_record/connection_adapters/postgresql_adapter.rb
61
+ - lib/active_record/connection_adapters/sqlite3_adapter.rb
62
+ - lib/activerecord-jdbc-adapter.rb
63
+ - lib/arel/engines/sql/compilers/db2_compiler.rb
64
+ - lib/arel/engines/sql/compilers/derby_compiler.rb
65
+ - lib/arel/engines/sql/compilers/h2_compiler.rb
66
+ - lib/arel/engines/sql/compilers/hsqldb_compiler.rb
67
+ - lib/arel/engines/sql/compilers/jdbc_compiler.rb
68
+ - lib/arel/engines/sql/compilers/mssql_compiler.rb
69
+ - lib/arel/visitors/compat.rb
70
+ - lib/arel/visitors/db2.rb
71
+ - lib/arel/visitors/derby.rb
72
+ - lib/arel/visitors/firebird.rb
73
+ - lib/arel/visitors/hsqldb.rb
74
+ - lib/arel/visitors/sql_server.rb
75
+ - lib/arjdbc.rb
76
+ - lib/arjdbc/db2.rb
77
+ - lib/arjdbc/db2/adapter.rb
78
+ - lib/arjdbc/derby.rb
79
+ - lib/arjdbc/derby/adapter.rb
80
+ - lib/arjdbc/derby/connection_methods.rb
81
+ - lib/arjdbc/discover.rb
82
+ - lib/arjdbc/firebird.rb
83
+ - lib/arjdbc/firebird/adapter.rb
84
+ - lib/arjdbc/h2.rb
85
+ - lib/arjdbc/h2/adapter.rb
86
+ - lib/arjdbc/h2/connection_methods.rb
87
+ - lib/arjdbc/hsqldb.rb
88
+ - lib/arjdbc/hsqldb/adapter.rb
89
+ - lib/arjdbc/hsqldb/connection_methods.rb
90
+ - lib/arjdbc/informix.rb
91
+ - lib/arjdbc/informix/adapter.rb
92
+ - lib/arjdbc/informix/connection_methods.rb
93
+ - lib/arjdbc/jdbc.rb
94
+ - lib/arjdbc/jdbc/adapter.rb
95
+ - lib/arjdbc/jdbc/adapter_java.jar
96
+ - lib/arjdbc/jdbc/base_ext.rb
97
+ - lib/arjdbc/jdbc/callbacks.rb
98
+ - lib/arjdbc/jdbc/column.rb
99
+ - lib/arjdbc/jdbc/compatibility.rb
100
+ - lib/arjdbc/jdbc/connection.rb
101
+ - lib/arjdbc/jdbc/connection_methods.rb
102
+ - lib/arjdbc/jdbc/core_ext.rb
103
+ - lib/arjdbc/jdbc/discover.rb
104
+ - lib/arjdbc/jdbc/driver.rb
105
+ - lib/arjdbc/jdbc/extension.rb
106
+ - lib/arjdbc/jdbc/java.rb
107
+ - lib/arjdbc/jdbc/jdbc.rake
108
+ - lib/arjdbc/jdbc/missing_functionality_helper.rb
109
+ - lib/arjdbc/jdbc/quoted_primary_key.rb
110
+ - lib/arjdbc/jdbc/railtie.rb
111
+ - lib/arjdbc/jdbc/rake_tasks.rb
112
+ - lib/arjdbc/jdbc/type_converter.rb
113
+ - lib/arjdbc/mimer.rb
114
+ - lib/arjdbc/mimer/adapter.rb
115
+ - lib/arjdbc/mssql.rb
116
+ - lib/arjdbc/mssql/adapter.rb
117
+ - lib/arjdbc/mssql/connection_methods.rb
118
+ - lib/arjdbc/mssql/limit_helpers.rb
119
+ - lib/arjdbc/mssql/lock_helpers.rb
120
+ - lib/arjdbc/mssql/tsql_helper.rb
121
+ - lib/arjdbc/mysql.rb
122
+ - lib/arjdbc/mysql/adapter.rb
123
+ - lib/arjdbc/mysql/connection_methods.rb
124
+ - lib/arjdbc/oracle.rb
125
+ - lib/arjdbc/oracle/adapter.rb
126
+ - lib/arjdbc/oracle/connection_methods.rb
127
+ - lib/arjdbc/postgresql.rb
128
+ - lib/arjdbc/postgresql/adapter.rb
129
+ - lib/arjdbc/postgresql/connection_methods.rb
130
+ - lib/arjdbc/sqlite3.rb
131
+ - lib/arjdbc/sqlite3/adapter.rb
132
+ - lib/arjdbc/sqlite3/connection_methods.rb
133
+ - lib/arjdbc/sybase.rb
134
+ - lib/arjdbc/sybase/adapter.rb
135
+ - lib/arjdbc/version.rb
136
+ - lib/generators/jdbc/USAGE
137
+ - lib/generators/jdbc/jdbc_generator.rb
138
+ - lib/jdbc_adapter.rb
139
+ - lib/jdbc_adapter/rake_tasks.rb
140
+ - lib/jdbc_adapter/version.rb
141
+ - lib/pg.rb
142
+ - pom.xml
143
+ - rails_generators/jdbc_generator.rb
144
+ - rails_generators/templates/config/initializers/jdbc.rb
145
+ - rails_generators/templates/lib/tasks/jdbc.rake
146
+ - rakelib/01-tomcat.rake
147
+ - rakelib/02-test.rake
148
+ - rakelib/bundler_ext.rb
149
+ - rakelib/compile.rake
150
+ - rakelib/db.rake
151
+ - rakelib/rails.rake
152
+ - src/java/arjdbc/db2/DB2RubyJdbcConnection.java
153
+ - src/java/arjdbc/derby/DerbyModule.java
154
+ - src/java/arjdbc/h2/H2RubyJdbcConnection.java
155
+ - src/java/arjdbc/informix/InformixRubyJdbcConnection.java
156
+ - src/java/arjdbc/jdbc/AdapterJavaService.java
157
+ - src/java/arjdbc/jdbc/JdbcConnectionFactory.java
158
+ - src/java/arjdbc/jdbc/RubyJdbcConnection.java
159
+ - src/java/arjdbc/jdbc/SQLBlock.java
160
+ - src/java/arjdbc/mssql/MssqlRubyJdbcConnection.java
161
+ - src/java/arjdbc/mysql/MySQLModule.java
162
+ - src/java/arjdbc/mysql/MySQLRubyJdbcConnection.java
163
+ - src/java/arjdbc/oracle/OracleRubyJdbcConnection.java
164
+ - src/java/arjdbc/postgresql/PostgresqlRubyJdbcConnection.java
165
+ - src/java/arjdbc/sqlite3/Sqlite3RubyJdbcConnection.java
166
+ - test/abstract_db_create.rb
167
+ - test/activerecord/connection_adapters/type_conversion_test.rb
168
+ - test/activerecord/connections/native_jdbc_mysql/connection.rb
169
+ - test/activerecord/jall.sh
170
+ - test/activerecord/jtest.sh
171
+ - test/db/db2.rb
172
+ - test/db/derby.rb
173
+ - test/db/h2.rb
174
+ - test/db/hsqldb.rb
175
+ - test/db/informix.rb
176
+ - test/db/jdbc.rb
177
+ - test/db/jdbc_derby.rb
178
+ - test/db/jdbc_h2.rb
179
+ - test/db/jdbc_mysql.rb
180
+ - test/db/jdbc_postgres.rb
181
+ - test/db/jndi_config.rb
182
+ - test/db/jndi_pooled_config.rb
183
+ - test/db/logger.rb
184
+ - test/db/mssql.rb
185
+ - test/db/mysql.rb
186
+ - test/db/mysql_config.rb
187
+ - test/db/oracle.rb
188
+ - test/db/postgres.rb
189
+ - test/db/postgres_config.rb
190
+ - test/db/sqlite3.rb
191
+ - test/db2_reset_column_information_test.rb
192
+ - test/db2_simple_test.rb
193
+ - test/derby_migration_test.rb
194
+ - test/derby_multibyte_test.rb
195
+ - test/derby_reset_column_information_test.rb
196
+ - test/derby_row_locking_test.rb
197
+ - test/derby_simple_test.rb
198
+ - test/generic_jdbc_connection_test.rb
199
+ - test/h2_change_column_test.rb
200
+ - test/h2_simple_test.rb
201
+ - test/has_many_through.rb
202
+ - test/helper.rb
203
+ - test/hsqldb_simple_test.rb
204
+ - test/informix_simple_test.rb
205
+ - test/jdbc_common.rb
206
+ - test/jndi_callbacks_test.rb
207
+ - test/jndi_test.rb
208
+ - test/manualTestDatabase.rb
209
+ - test/models/add_not_null_column_to_table.rb
210
+ - test/models/auto_id.rb
211
+ - test/models/custom_pk_name.rb
212
+ - test/models/data_types.rb
213
+ - test/models/entry.rb
214
+ - test/models/mixed_case.rb
215
+ - test/models/reserved_word.rb
216
+ - test/models/string_id.rb
217
+ - test/models/thing.rb
218
+ - test/models/validates_uniqueness_of_string.rb
219
+ - test/mssql_db_create_test.rb
220
+ - test/mssql_identity_insert_test.rb
221
+ - test/mssql_ignore_system_views_test.rb
222
+ - test/mssql_legacy_types_test.rb
223
+ - test/mssql_limit_offset_test.rb
224
+ - test/mssql_multibyte_test.rb
225
+ - test/mssql_null_test.rb
226
+ - test/mssql_reset_column_information_test.rb
227
+ - test/mssql_row_locking_sql_test.rb
228
+ - test/mssql_row_locking_test.rb
229
+ - test/mssql_simple_test.rb
230
+ - test/mysql_db_create_test.rb
231
+ - test/mysql_index_length_test.rb
232
+ - test/mysql_info_test.rb
233
+ - test/mysql_multibyte_test.rb
234
+ - test/mysql_nonstandard_primary_key_test.rb
235
+ - test/mysql_reset_column_information_test.rb
236
+ - test/mysql_simple_test.rb
237
+ - test/oracle_limit_test.rb
238
+ - test/oracle_reset_column_information_test.rb
239
+ - test/oracle_simple_test.rb
240
+ - test/oracle_specific_test.rb
241
+ - test/postgres_db_create_test.rb
242
+ - test/postgres_drop_db_test.rb
243
+ - test/postgres_information_schema_leak_test.rb
244
+ - test/postgres_mixed_case_test.rb
245
+ - test/postgres_native_type_mapping_test.rb
246
+ - test/postgres_nonseq_pkey_test.rb
247
+ - test/postgres_reserved_test.rb
248
+ - test/postgres_reset_column_information_test.rb
249
+ - test/postgres_schema_search_path_test.rb
250
+ - test/postgres_simple_test.rb
251
+ - test/postgres_table_alias_length_test.rb
252
+ - test/postgres_type_conversion_test.rb
253
+ - test/row_locking.rb
254
+ - test/simple.rb
255
+ - test/sqlite3_reset_column_information_test.rb
256
+ - test/sqlite3_simple_test.rb
257
+ - test/sybase_jtds_simple_test.rb
258
+ - test/sybase_reset_column_information_test.rb
246
259
  homepage: https://github.com/jruby/activerecord-jdbc-adapter
247
- licenses: []
248
-
249
- post_install_message:
250
- rdoc_options:
251
- - --main
252
- - README.txt
253
- - -SHN
254
- - -f
255
- - darkfish
256
- require_paths:
257
- - lib
258
- required_ruby_version: !ruby/object:Gem::Requirement
260
+ licenses:
261
+ - BSD
262
+ post_install_message:
263
+ rdoc_options:
264
+ - --main
265
+ - README.rdoc
266
+ - -SHN
267
+ - -f
268
+ - darkfish
269
+ require_paths:
270
+ - lib
271
+ required_ruby_version: !ruby/object:Gem::Requirement
272
+ requirements:
273
+ - - ! '>='
274
+ - !ruby/object:Gem::Version
275
+ segments:
276
+ - 0
277
+ hash: 2
278
+ version: !binary |-
279
+ MA==
259
280
  none: false
260
- requirements:
261
- - - ">="
262
- - !ruby/object:Gem::Version
263
- hash: 2
264
- segments:
265
- - 0
266
- version: "0"
267
- required_rubygems_version: !ruby/object:Gem::Requirement
281
+ required_rubygems_version: !ruby/object:Gem::Requirement
282
+ requirements:
283
+ - - ! '>='
284
+ - !ruby/object:Gem::Version
285
+ version: !binary |-
286
+ MA==
268
287
  none: false
269
- requirements:
270
- - - ">="
271
- - !ruby/object:Gem::Version
272
- version: "0"
273
288
  requirements: []
274
-
275
289
  rubyforge_project: jruby-extras
276
290
  rubygems_version: 1.8.24
277
- signing_key:
291
+ signing_key:
278
292
  specification_version: 3
279
293
  summary: JDBC adapter for ActiveRecord, for use within JRuby on Rails.
280
- test_files:
281
- - test/abstract_db_create.rb
282
- - test/activerecord/connection_adapters/type_conversion_test.rb
283
- - test/activerecord/connections/native_jdbc_mysql/connection.rb
284
- - test/activerecord/jall.sh
285
- - test/activerecord/jtest.sh
286
- - test/db/db2.rb
287
- - test/db/derby.rb
288
- - test/db/h2.rb
289
- - test/db/hsqldb.rb
290
- - test/db/informix.rb
291
- - test/db/jdbc.rb
292
- - test/db/jndi_config.rb
293
- - test/db/logger.rb
294
- - test/db/mssql.rb
295
- - test/db/mysql.rb
296
- - test/db/oracle.rb
297
- - test/db/postgres.rb
298
- - test/db/sqlite3.rb
299
- - test/db2_reset_column_information_test.rb
300
- - test/db2_simple_test.rb
301
- - test/derby_migration_test.rb
302
- - test/derby_multibyte_test.rb
303
- - test/derby_reset_column_information_test.rb
304
- - test/derby_row_locking_test.rb
305
- - test/derby_simple_test.rb
306
- - test/generic_jdbc_connection_test.rb
307
- - test/h2_change_column_test.rb
308
- - test/h2_simple_test.rb
309
- - test/has_many_through.rb
310
- - test/helper.rb
311
- - test/hsqldb_simple_test.rb
312
- - test/informix_simple_test.rb
313
- - test/jdbc_common.rb
314
- - test/jndi_callbacks_test.rb
315
- - test/jndi_test.rb
316
- - test/manualTestDatabase.rb
317
- - test/models/add_not_null_column_to_table.rb
318
- - test/models/auto_id.rb
319
- - test/models/data_types.rb
320
- - test/models/entry.rb
321
- - test/models/mixed_case.rb
322
- - test/models/reserved_word.rb
323
- - test/models/string_id.rb
324
- - test/models/thing.rb
325
- - test/models/validates_uniqueness_of_string.rb
326
- - test/mssql_db_create_test.rb
327
- - test/mssql_identity_insert_test.rb
328
- - test/mssql_ignore_system_views_test.rb
329
- - test/mssql_legacy_types_test.rb
330
- - test/mssql_limit_offset_test.rb
331
- - test/mssql_multibyte_test.rb
332
- - test/mssql_null_test.rb
333
- - test/mssql_reset_column_information_test.rb
334
- - test/mssql_row_locking_sql_test.rb
335
- - test/mssql_row_locking_test.rb
336
- - test/mssql_simple_test.rb
337
- - test/mysql_db_create_test.rb
338
- - test/mysql_index_length_test.rb
339
- - test/mysql_info_test.rb
340
- - test/mysql_multibyte_test.rb
341
- - test/mysql_nonstandard_primary_key_test.rb
342
- - test/mysql_reset_column_information_test.rb
343
- - test/mysql_simple_test.rb
344
- - test/oracle_reset_column_information_test.rb
345
- - test/oracle_simple_test.rb
346
- - test/oracle_specific_test.rb
347
- - test/postgres_db_create_test.rb
348
- - test/postgres_drop_db_test.rb
349
- - test/postgres_information_schema_leak_test.rb
350
- - test/postgres_mixed_case_test.rb
351
- - test/postgres_native_type_mapping_test.rb
352
- - test/postgres_nonseq_pkey_test.rb
353
- - test/postgres_reserved_test.rb
354
- - test/postgres_reset_column_information_test.rb
355
- - test/postgres_schema_search_path_test.rb
356
- - test/postgres_simple_test.rb
357
- - test/postgres_table_alias_length_test.rb
358
- - test/postgres_type_conversion_test.rb
359
- - test/row_locking.rb
360
- - test/simple.rb
361
- - test/sqlite3_reset_column_information_test.rb
362
- - test/sqlite3_simple_test.rb
363
- - test/sybase_jtds_simple_test.rb
364
- - test/sybase_reset_column_information_test.rb
294
+ test_files:
295
+ - test/abstract_db_create.rb
296
+ - test/activerecord/connection_adapters/type_conversion_test.rb
297
+ - test/activerecord/connections/native_jdbc_mysql/connection.rb
298
+ - test/activerecord/jall.sh
299
+ - test/activerecord/jtest.sh
300
+ - test/db/db2.rb
301
+ - test/db/derby.rb
302
+ - test/db/h2.rb
303
+ - test/db/hsqldb.rb
304
+ - test/db/informix.rb
305
+ - test/db/jdbc.rb
306
+ - test/db/jdbc_derby.rb
307
+ - test/db/jdbc_h2.rb
308
+ - test/db/jdbc_mysql.rb
309
+ - test/db/jdbc_postgres.rb
310
+ - test/db/jndi_config.rb
311
+ - test/db/jndi_pooled_config.rb
312
+ - test/db/logger.rb
313
+ - test/db/mssql.rb
314
+ - test/db/mysql.rb
315
+ - test/db/mysql_config.rb
316
+ - test/db/oracle.rb
317
+ - test/db/postgres.rb
318
+ - test/db/postgres_config.rb
319
+ - test/db/sqlite3.rb
320
+ - test/db2_reset_column_information_test.rb
321
+ - test/db2_simple_test.rb
322
+ - test/derby_migration_test.rb
323
+ - test/derby_multibyte_test.rb
324
+ - test/derby_reset_column_information_test.rb
325
+ - test/derby_row_locking_test.rb
326
+ - test/derby_simple_test.rb
327
+ - test/generic_jdbc_connection_test.rb
328
+ - test/h2_change_column_test.rb
329
+ - test/h2_simple_test.rb
330
+ - test/has_many_through.rb
331
+ - test/helper.rb
332
+ - test/hsqldb_simple_test.rb
333
+ - test/informix_simple_test.rb
334
+ - test/jdbc_common.rb
335
+ - test/jndi_callbacks_test.rb
336
+ - test/jndi_test.rb
337
+ - test/manualTestDatabase.rb
338
+ - test/models/add_not_null_column_to_table.rb
339
+ - test/models/auto_id.rb
340
+ - test/models/custom_pk_name.rb
341
+ - test/models/data_types.rb
342
+ - test/models/entry.rb
343
+ - test/models/mixed_case.rb
344
+ - test/models/reserved_word.rb
345
+ - test/models/string_id.rb
346
+ - test/models/thing.rb
347
+ - test/models/validates_uniqueness_of_string.rb
348
+ - test/mssql_db_create_test.rb
349
+ - test/mssql_identity_insert_test.rb
350
+ - test/mssql_ignore_system_views_test.rb
351
+ - test/mssql_legacy_types_test.rb
352
+ - test/mssql_limit_offset_test.rb
353
+ - test/mssql_multibyte_test.rb
354
+ - test/mssql_null_test.rb
355
+ - test/mssql_reset_column_information_test.rb
356
+ - test/mssql_row_locking_sql_test.rb
357
+ - test/mssql_row_locking_test.rb
358
+ - test/mssql_simple_test.rb
359
+ - test/mysql_db_create_test.rb
360
+ - test/mysql_index_length_test.rb
361
+ - test/mysql_info_test.rb
362
+ - test/mysql_multibyte_test.rb
363
+ - test/mysql_nonstandard_primary_key_test.rb
364
+ - test/mysql_reset_column_information_test.rb
365
+ - test/mysql_simple_test.rb
366
+ - test/oracle_limit_test.rb
367
+ - test/oracle_reset_column_information_test.rb
368
+ - test/oracle_simple_test.rb
369
+ - test/oracle_specific_test.rb
370
+ - test/postgres_db_create_test.rb
371
+ - test/postgres_drop_db_test.rb
372
+ - test/postgres_information_schema_leak_test.rb
373
+ - test/postgres_mixed_case_test.rb
374
+ - test/postgres_native_type_mapping_test.rb
375
+ - test/postgres_nonseq_pkey_test.rb
376
+ - test/postgres_reserved_test.rb
377
+ - test/postgres_reset_column_information_test.rb
378
+ - test/postgres_schema_search_path_test.rb
379
+ - test/postgres_simple_test.rb
380
+ - test/postgres_table_alias_length_test.rb
381
+ - test/postgres_type_conversion_test.rb
382
+ - test/row_locking.rb
383
+ - test/simple.rb
384
+ - test/sqlite3_reset_column_information_test.rb
385
+ - test/sqlite3_simple_test.rb
386
+ - test/sybase_jtds_simple_test.rb
387
+ - test/sybase_reset_column_information_test.rb