Export to GitHub

ruby-sequel - issue #299

Invalid syntax for creating temp tables in MS SQL


Posted on May 4, 2010 by Grumpy Giraffe

Using latest Sequel (3.11.0) and jdbc

DB.create_table(:search_reqt_res, :temp => true) do Fixnum :staff_id # integer end

results in:

CREATE #TABLE [SEARCH_REQT_RES] ([STAFF_ID] integer)

instead of:

CREATE TABLE [#SEARCH_REQT_RES] ([STAFF_ID] integer)

Comment #1

Posted on May 4, 2010 by Happy Bear

This is a definite bug in the shared MSSQL adapter.

Comment #2

Posted on May 4, 2010 by Happy Bear

Fixed: http://github.com/jeremyevans/sequel/commit/0fc7453bcdf380c03fd019e25519573382d26eab

Status: Fixed