[EMAIL PROTECTED] wrote:
ozeigermann 2003/11/26 07:18:10

  Modified:    proposals/stores/org/apache/slide/store/impl/rdbms
                        MySqlSchema.sql StandardRDBMSAdapter.java
                        MySqlRDBMSAdapter.java
  Log:
  - Unified adapters
  - Made int(11) BIGINT for MySQL

Contributed by
- Pier Fumagalli
- Alexander Wendt
Revision Changes Path
1.3 +27 -27 jakarta-slide/proposals/stores/org/apache/slide/store/impl/rdbms/MySqlSchema.sql
Index: MySqlSchema.sql
===================================================================
RCS file: /home/cvs/jakarta-slide/proposals/stores/org/apache/slide/store/impl/rdbms/MySqlSchema.sql,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- MySqlSchema.sql 26 Nov 2003 10:07:09 -0000 1.2
+++ MySqlSchema.sql 26 Nov 2003 15:18:10 -0000 1.3
@@ -18,7 +18,7 @@
# --------------------------------------------------------

Oliver, this file seems to have been added as binary, as indicated by the extra empty lines resulting from missing line-end conversion. You should consider converting this file to kv ("Substitute keyword and value"):


$ cvs admin -kkv MySqlSchema.sql

(If you use Eclipse, you can add the .sql extension to the file types recognized by the CVS plug-in, and set it to ASCII; there's also a GUI for changing the keyword substitution mode)

-chris

CREATE TABLE URI (

- URI_ID int(11) NOT NULL auto_increment,

+ URI_ID bigint NOT NULL auto_increment,

URI_STRING varchar(255) NOT NULL,

PRIMARY KEY (URI_ID),

KEY URI_IX2 (URI_STRING)

  @@ -27,7 +27,7 @@
   # --------------------------------------------------------
[snip]


--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]



Reply via email to